Git游戏

您现在的位置是:首页 > 锅巴汉化 > 已汉化

游戏详情

增量主义(Incrementalist)

  • 更新:2021-10-20 版本号:暂无
  • 收藏0 次 推荐5 次 热度14719 ℃
  • QQ群: 730783833  点击加入Git游戏交流群:730783833
  • 标签: 增量

游戏介绍

《增量主义》是一款公式与变量组成的增量放置游戏。

游戏截图

增量主义(Incrementalist)
增量主义(Incrementalist)
增量主义(Incrementalist)
增量主义(Incrementalist)
增量主义(Incrementalist)

文章评论

共有2条评论来说两句吧...

玖心 3周前
// 修改 PP 为 10000 user.pp.current = new Decimal("10000"); user.pp.total = new Decimal("10000"); user.pp.sac = new Decimal("10000"); user.pp.highest = new Decimal("10000"); user.pp.count = 10000; // 刷新界面 updatePrestige(); console.log("✅ PP 已修改为:", user.pp.current.toString());
玖心 3周前
// 临时替换 getPPGain 函数,让它返回巨大数值 let originalGetPPGain = getPPGain; getPPGain = () => new Decimal("100"); // 执行飞升(获得 PP) runPrestige(true, false); // 恢复原函数 getPPGain = originalGetPPGain; // 刷新界面 updatePrestige(); console.log("✅ 已获得 100 声望点");