设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 2542|回复: 3
打印 上一主题 下一主题

[已经解决] 物理反击、魔法反射

[复制链接]

Lv3.寻梦者

梦石
0
星屑
1346
在线时间
806 小时
注册时间
2013-8-3
帖子
455
跳转到指定楼层
1
发表于 2017-4-29 22:54:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 小小西 于 2017-4-30 13:48 编辑

很久以前把反击脚本改动了,默认反击是没受到伤害反击敌人,现在状况是:受到物理攻击受伤后再反击敌人,魔法反射也是先受伤再反射回去。
物理反击和魔法反射用的是同一个公式吗?

问题已解决。
RUBY 代码复制
  1. #--------------------------------------------------------------------------
  2.     # ● 发动技能/物品
  3.     #--------------------------------------------------------------------------
  4.  
  5.   def invoke_item(target, item)
  6.  
  7.     if rand < target.item_cnt(@subject, item)
  8.  
  9.       apply_item_effects(apply_substitute(target, item), item)  #如果删掉这行,触发物理反击时不会受伤
  10.  
  11.       invoke_counter_attack(target, item) if !(target.state?(1))  
  12.  
  13.     elsif rand < target.item_mrf(@subject, item)
  14.  
  15.       #apply_item_effects(apply_substitute(target, item), item)#如果删掉这行,触发魔法反射时不会受伤
  16.  
  17.       invoke_magic_reflection(target, item) if !(target.state?(1))
  18.  
  19.     else
  20.  
  21.       apply_item_effects(apply_substitute(target, item), item)
  22.  
  23.     end
  24.  
  25.     @subject.last_target_index = target.index
  26.  
  27.   end

【同人游戏】勇者斗恶龙TG
欢迎加入游戏测试群333599798
如有需私聊请加QQ:516425000

Lv2.观梦者

梦石
0
星屑
644
在线时间
830 小时
注册时间
2016-7-24
帖子
649

开拓者

2
发表于 2017-4-30 00:19:59 | 只看该作者
上面都沒貼到核心方法我也不知道你改成怎樣(小聲)
RUBY 代码复制
  1. class Game_Battler < Game_BattlerBase
  2.   def invoke_item(target, item)
  3.     if rand < target.item_tct(@subject, item)
  4.       apply_item_effects(apply_substitute(target, item), item)
  5.       invoke_counter_attack(target, item)
  6.     elsif rand < target.item_mrf(@subject, item)
  7.       invoke_magic_reflection(target, item)
  8.     else
  9.       apply_item_effects(apply_substitute(target, item), item)
  10.     end
  11.     @subject.last_target_index = target.index
  12.   end
  13. end

点评

隨便放代碼是新招嗎wwww  发表于 2017-4-30 21:13
我不知道在哪随便放了个代码,原来是多了一项,被我#屏蔽了  发表于 2017-4-30 13:44

评分

参与人数 1梦石 +1 收起 理由
RaidenInfinity + 1 认可答案

查看全部评分

2016/07/17 加入RPG製作,勿忘初衷!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-17 08:26

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表