Project1
标题:
去掉战斗时的攻击指令
[打印本页]
作者:
汪洋洋
时间:
2016-5-4 21:11
标题:
去掉战斗时的攻击指令
去掉战斗时的攻击指令 比如角色一为战士 指令有攻击 魔法 2角色为法师 指令攻击没有 从魔法开始
作者:
52129848
时间:
2016-5-4 21:20
#------------------------------------------------------------------------------
# 战斗画面中,选择角色行动的窗口。
#==============================================================================
class Window_ActorCommand < Window_Command
#--------------------------------------------------------------------------
# ● 添加攻击指令
#--------------------------------------------------------------------------
def add_attack_command
add_command(Vocab::attack, :attack ) if @actor.attack_usable?
end
#--------------------------------------------------------------------------
# ● 添加技能指令
#--------------------------------------------------------------------------
def add_skill_commands
@actor.added_skill_types.sort.each do |stype_id|
name = $data_system.skill_types[stype_id]
add_command(name, :skill, true, stype_id) if
[email protected]
_type_sealed?(stype_id)
end
end
#--------------------------------------------------------------------------
# ● 添加防御指令
#--------------------------------------------------------------------------
def add_guard_command
add_command(Vocab::guard, :guard) if @actor.guard_usable?
end
end
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1