| 
 
| 赞 | 0 |  
| VIP | 298 |  
| 好人卡 | 70 |  
| 积分 | 8 |  
| 经验 | 135648 |  
| 最后登录 | 2018-10-11 |  
| 在线时间 | 6267 小时 |  
 Lv2.观梦者 
 
	梦石0 星屑784 在线时间6267 小时注册时间2006-6-7帖子8462 | 
| 固定伤害的话 
 先 在#--------------------------------------------------------------------------
 # ● 应用通常攻击效果
 #     attacker : 攻击者 (battler)
 #--------------------------------------------------------------------------
 def attack_effect(attacker)
 # 清除会心一击标志
 self.critical = false
 #添加
 @active_battler = attacker
 
 在 Game_Battler 3 的
 #--------------------------------------------------------------------------
 # ● 应用特技效果
 下找到
 
 # 伤害符号正确的情况下
 if self.damage > 0
 # 防御修正
 if self.guarding?
 self.damage /= 1
 end
 end
 添加
 if skill.element_set.include?(1)  #技能勾选属性编号
 self.damage  = @active_battler.level * 50  #使用者等级*50
 end
 
 | 
 评分
查看全部评分
 |