想过用装备的自动状态,但是状态只能设定属性抵抗(伤害减半),不能设定伤害增加,
该脚本的话又不知道改哪里……求助……作者: 君迁子 时间: 2009-4-12 06:47
状态的话,需要在class Game_Battler的def attack_effect(attacker)、def skill_effect(user, skill)、def item_effect(item, user = $game_party.actors[0])(我用得是RTAB,可能有不同),也就是物品、技能、普攻伤害那里,第二命中判定那堆东西下面,加上类似于:
if self.states.include?(X) and attacker.element_set.include?(Y)
self.damage *= 2
end
意思就是某人有X状态,攻击者带Y属性,伤害翻番
技能的就是
if self.states.include?(X) and skill.element_set.include?(Y)
self.damage *= 2
end