赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-16 |
在线时间 | 9414 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21631
- 在线时间
- 9414 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
本帖最后由 喵呜喵5 于 2015-6-15 20:15 编辑
%s表示受攻击者的姓名- class Game_ActionResult
- alias m5_20150615_hp_damage_text hp_damage_text
- def hp_damage_text
- if @hp_drain <= 0 && @hp_damage > 0
- fmt =
- if @hp_damage < 1000 then "%s皮肤被划伤"
- elsif @hp_damage < 2500 then "%s受到一击重击"
- elsif @hp_damage < 4000 then "%s受到深可见骨的伤痕"
- elsif @hp_damage < 5000 then "%s受到致命一击,切入骨髓..."
- end
- sprintf(fmt, @battler.name)
- else
- m5_20150615_hp_damage_text
- end
- end
- end
复制代码 另外,像你这种满屏幕文字的游戏,个人建议你换一个字体 |
评分
-
查看全部评分
|