Project1

标题: 问一下大家RM中的MEV MRG CNT 是什么意思? [打印本页]

作者: Nil2018    时间: 2018-1-3 17:39
标题: 问一下大家RM中的MEV MRG CNT 是什么意思?
其实是我懒得翻F1说明书555555

我猜一下
MEV   = magic evidence value
MRG  = magic reflect g....g.....
CNT = critical n...t....
作者: fux2    时间: 2018-1-3 22:02
cnt是counter反击吧,具体全称我记得脚本的注释里有写?
mrf就是magic reflection的缩写吧,并不是三个单词组成的词组。
作者: shitake    时间: 2018-1-4 00:21
  1. // Hit Points
  2.     hp: { get: function() { return this._hp; }, configurable: true },
  3.     // Magic Points
  4.     mp: { get: function() { return this._mp; }, configurable: true },
  5.     // Tactical Points
  6.     tp: { get: function() { return this._tp; }, configurable: true },
  7.     // Maximum Hit Points
  8.     mhp: { get: function() { return this.param(0); }, configurable: true },
  9.     // Maximum Magic Points
  10.     mmp: { get: function() { return this.param(1); }, configurable: true },
  11.     // ATtacK power
  12.     atk: { get: function() { return this.param(2); }, configurable: true },
  13.     // DEFense power
  14.     def: { get: function() { return this.param(3); }, configurable: true },
  15.     // Magic ATtack power
  16.     mat: { get: function() { return this.param(4); }, configurable: true },
  17.     // Magic DeFense power
  18.     mdf: { get: function() { return this.param(5); }, configurable: true },
  19.     // AGIlity
  20.     agi: { get: function() { return this.param(6); }, configurable: true },
  21.     // LUcK
  22.     luk: { get: function() { return this.param(7); }, configurable: true },
  23.     // HIT rate
  24.     hit: { get: function() { return this.xparam(0); }, configurable: true },
  25.     // EVAsion rate
  26.     eva: { get: function() { return this.xparam(1); }, configurable: true },
  27.     // CRItical rate
  28.     cri: { get: function() { return this.xparam(2); }, configurable: true },
  29.     // Critical EVasion rate
  30.     cev: { get: function() { return this.xparam(3); }, configurable: true },
  31.     // Magic EVasion rate
  32.     mev: { get: function() { return this.xparam(4); }, configurable: true },
  33.     // Magic ReFlection rate
  34.     mrf: { get: function() { return this.xparam(5); }, configurable: true },
  35.     // CouNTer attack rate
  36.     cnt: { get: function() { return this.xparam(6); }, configurable: true },
  37.     // Hp ReGeneration rate
  38.     hrg: { get: function() { return this.xparam(7); }, configurable: true },
  39.     // Mp ReGeneration rate
  40.     mrg: { get: function() { return this.xparam(8); }, configurable: true },
  41.     // Tp ReGeneration rate
  42.     trg: { get: function() { return this.xparam(9); }, configurable: true },
  43.     // TarGet Rate
  44.     tgr: { get: function() { return this.sparam(0); }, configurable: true },
  45.     // GuaRD effect rate
  46.     grd: { get: function() { return this.sparam(1); }, configurable: true },
  47.     // RECovery effect rate
  48.     rec: { get: function() { return this.sparam(2); }, configurable: true },
  49.     // PHArmacology
  50.     pha: { get: function() { return this.sparam(3); }, configurable: true },
  51.     // Mp Cost Rate
  52.     mcr: { get: function() { return this.sparam(4); }, configurable: true },
  53.     // Tp Charge Rate
  54.     tcr: { get: function() { return this.sparam(5); }, configurable: true },
  55.     // Physical Damage Rate
  56.     pdr: { get: function() { return this.sparam(6); }, configurable: true },
  57.     // Magical Damage Rate
  58.     mdr: { get: function() { return this.sparam(7); }, configurable: true },
  59.     // Floor Damage Rate
  60.     fdr: { get: function() { return this.sparam(8); }, configurable: true },
  61.     // EXperience Rate
  62.     exr: { get: function() { return this.sparam(9); }, configurable: true }
复制代码


rm 的蜜汁缩写




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1