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

Project1

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

[交流讨论] 备忘录,一些小细节的优化(删减),希望有帮助

[复制链接]

Lv3.寻梦者

梦石
0
星屑
3657
在线时间
1133 小时
注册时间
2017-4-6
帖子
278

开拓者

跳转到指定楼层
1
发表于 2018-2-22 00:09:05 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 夏的66rpg 于 2018-2-25 13:48 编辑

让速度修正更加明显
YEP_X_BattlesysATB
this._atbChargeMod = item.speed;
修改为
this._atbChargeMod = item.speed * 3;

隐藏相同敌人后缀的ABC
rpg_objects
Game_Enemy.prototype.name = function() {
return this.originalName() + (this._plural);
修改为
return this.originalName();

更改金钱的下限
rpg_objects
Game_Party.prototype.gainGold
this._gold = (this._gold + amount).clamp(0, this.maxGold());
修改为
this._gold = (this._gold + amount).clamp(-1000, this.maxGold());

去掉最强装备的选项
rpg_windows
Window_EquipCommand.prototype.makeCommandList = function() {
this.addCommand(TextManager.equip2,   'equip');
this.addCommand(TextManager.optimize, 'optimize');
this.addCommand(TextManager.clear,    'clear');
};
删除
this.addCommand(TextManager.optimize, 'optimize');

删除攻击防御选项
rpg_windows
Window_ActorCommand.prototype.makeCommandList = function() {
if (this._actor) {
this.addAttackCommand();
this.addSkillCommands();
this.addGuardCommand();
this.addItemCommand();
}
};
删除
this.addAttackCommand();
this.addGuardCommand();

评分

参与人数 2+2 收起 理由
白嫩白嫩的 + 1 塞糖
微笑的迪妮莎 + 1 很实用~谢谢大佬分享!

查看全部评分

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

本版积分规则

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

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

GMT+8, 2024-5-20 05:48

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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