最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

MDT單位能力教程

2022-03-26 20:20 作者:NullPointerErr  | 我要投稿

單位的能力有很多種,比如能量場(chǎng)、力墻場(chǎng)和狀態(tài)場(chǎng),等等(本教程為了省事,使用 .hjson 語法進(jìn)行教程)

教程部分

玄武 -> 能量場(chǎng)/EnergyFieldAbility

aegires


abilities.add(new EnergyFieldAbility(35f, 65f, 180f){{
 ? ?statusDuration = 60f * 6f;
 ? ?maxTargets = 25;
}});

json

abilities: [
 ? ?{
 ? ? ? ?type: EnergyFieldAbility
 ? ? ? ?damage: 35.0
 ? ? ? ?reload: 65.0
 ? ? ? ?range: 180.0
 ? ? ? ?status: electrified
 ? ? ? ?statusDuration: 360.0
 ? ? ? ?targetGround: true
 ? ? ? ?targetAir: true
 ? ? ? ?hitBuildings: true
 ? ? ? ?hitUnits: true
 ? ? ? ?healPercent: 2.50
 ? ? ? ?maxTargets: 25
 ? ? ? ?useAmmo: true
 ? ? ? ?color: 98ffa9
 ? ?}
]

屬性解釋

  • type: 能力類型

  • damage: 傷害

  • reload: 能量場(chǎng)激活間隔

  • range: 能量場(chǎng)范圍

  • status: 被擊中的敵軍獲得效果

  • statusDuration: 效果持續(xù)幀數(shù)

  • targetGround: 瞄準(zhǔn)陸軍

  • targetAir: 瞄準(zhǔn)空軍

  • hitBuildings: 瞄準(zhǔn)建筑物

  • hitUnits: 瞄準(zhǔn)單位

  • healPercent: 恢復(fù)友方生命百分比

  • maxTarget: 最多瞄準(zhǔn)數(shù)

  • useAmmo: 是否使用子彈

  • color: 能量場(chǎng)的主色

耀星 -> 力墻場(chǎng)/ForceFieldAbility

quasar


abilities.add(new ForceFieldAbility(60f, 0.3f, 400f, 60f * 6));

json

abilities: [
 ? ?{
 ? ? ? ?type: ForceFieldAbility
 ? ? ? ?radius: 60.0
 ? ? ? ?regen: 0.30
 ? ? ? ?max: 400.0
 ? ? ? ?cooldown: 360.0
 ? ?}
]

屬性解釋

  • radius: 力墻范圍

  • regen: 力墻恢復(fù)值

  • max: 力墻最大值

  • cooldown: 墻破后冷卻時(shí)間

新星 -> 修復(fù)場(chǎng)/RepairFieldAbility

abilities.add(new RepairFieldAbility(10f, 60f * 4, 60f));

json

abilities: [
 ? ?{
 ? ? ? ?type: RepairFieldAbility
 ? ? ? ?amount: 10
 ? ? ? ?reload: 100
 ? ? ? ?range: 60
 ? ?}
]

屬性解釋

  • amount: 恢復(fù)生命

  • reload: 恢復(fù)場(chǎng)間隔幀數(shù)

  • range: 恢復(fù)場(chǎng)范圍

恒星 -> 護(hù)盾再生場(chǎng)/ShieldRegenFieldAbility

abilities.add(new ShieldRegenFieldAbility(20f, 40f, 60f * 5, 60f));

json

abilities: [
 ? ?{
 ? ? ? ?type: ShieldRegenFieldAbility
 ? ? ? ?amount: 20.0
 ? ? ? ?max: 40.0
 ? ? ? ?reload: 300.0
 ? ? ? ?range: 60.0
 ? ?}
]

屬性解釋

  • amount: 護(hù)盾再生

  • max: 護(hù)盾最大值

  • reload: 護(hù)盾再生場(chǎng)間隔幀數(shù)

  • range:?護(hù)盾再生場(chǎng)范圍

電鰻 -> 狀態(tài)場(chǎng)/StatusFieldAbility

oxynoe


abilities.add(new StatusFieldAbility(StatusEffects.overclock, 60f * 6, 60f * 6f, 60f));

json

abilities: [
 ? ?{
 ? ? ? ?type: StatusFieldAbility
 ? ? ? ?effect: overclock
 ? ? ? ?duration: 360.0
 ? ? ? ?reload: 360.0
 ? ? ? ?range: 60.0
 ? ?}
]

屬性解釋

  • effect: 友方獲得狀態(tài)

  • duration: 狀態(tài)持續(xù)時(shí)間

  • reload: 狀態(tài)場(chǎng)間隔幀數(shù)

  • range: 狀態(tài)場(chǎng)范圍

? -> 單位單位工廠/UnitSpawnAbility

(`?`指游戲內(nèi)沒有單位引用該能力)

abilities: [
 ? ?{
 ? ? ? ?type: UnitSpawnAbility
 ? ? ? ?unit: crawler
 ? ? ? ?spawnTime: 300.0
 ? ? ? ?spawnX: -5
 ? ? ? ?spawnY: 5
 ? ?}
]

屬性解釋

  • unit: 生成的單位

  • spawnTime: 生成幀數(shù)

  • spawnX: x軸偏移

  • spawnY: y軸偏移

屬性分類

EnergyFieldAbility

  • damage: float

  • reload: float

  • range: float

  • status: StatusEffect

  • statusDuration: float

  • targetGround: boolean

  • targetAir: boolean

  • hitBuildings: boolean

  • hitUnits: boolean

  • healPercent: float

  • maxTarget: int

  • useAmmo: boolean

  • color: Color

ForceFieldAbility

  • radius: float

  • regen: float

  • max: float

  • cooldown: float

RepairFieldAbility

  • amount: float

  • reload: amount

  • range: amount

ShieldRegenFieldAbility

  • amount: float

  • max: float

  • reload: float

  • range: float

StatusFieldAbilitiy

  • effect: StatusEffect

  • duration: float

  • reload: float

  • range: float

UnitSpawnAbility

  • unit: UnitType

  • spawnTime: float

  • spawnX: float

  • spawnY: float

其他

StatusEffect

json模組只能用這些, 也可以改變它們, 但不能自創(chuàng)(你可以用none等不常見效果寫狀態(tài), 間接自創(chuàng))

  • none: 無(無效果, 為了特殊場(chǎng)景使用)

  • burning: 燃燒(持續(xù)受到傷害)

    互斥: 潮濕, 凍結(jié); 加成: 油浸

  • freezing: 凍結(jié)(暫時(shí)減少血量和移速上限, 加強(qiáng)爆炸傷害)

    互斥: 融化, 燃燒; 加成: 爆炸

  • wet: 潮濕(暫時(shí)減少移速上限, 加強(qiáng)電擊傷害)

    互斥: 燃燒, 融化; 加成: 電擊

  • muddy: 泥濘(暫時(shí)減少移速上限)

  • melting: 融化(暫時(shí)減少生命上限和移速)

    互斥: 潮濕, 凍結(jié); 加成: 油浸

  • sapped: 弱化(暫時(shí)減少生命上限和移速上限)

  • electrified: 電磁紊亂(暫時(shí)減少移速上限, 增加換彈時(shí)間)

  • spore-slowed:?孢子減速(暫時(shí)減少移速上限)

  • tarred: 油浸(暫時(shí)減少單位移速)

    加成: 融化, 燃燒

  • overdrive: 過載(增加移速和傷害倍率, 減少生命上限, 永不消失)

  • overclock: 超頻(暫時(shí)增加移速, 傷害和生命上限)

  • shocked:?電擊(只在潮濕加成下作用)

  • blasted: 爆炸(只在凍結(jié)加成下作用)

  • unmoving: 靜止(暫時(shí)大幅度減少單位移速)

  • slow: 減速(暫時(shí)中程度減少單位移速)

  • shielded: 武甲(暫時(shí)增加生命上限)

  • boss: Boss(增加傷害倍率和生命上限, 永不消失)

  • corroded: 腐蝕(持續(xù)受到傷害)

  • disarmed: 繳械(暫時(shí)無法使用武器)

  • invincible: ()

UnitType

即單位, 教程見上期




MDT單位能力教程的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
丰原市| 乐陵市| 五原县| 乌兰浩特市| 自治县| 宁阳县| 象山县| 石屏县| 济阳县| 扎囊县| 日照市| 怀宁县| 察哈| 贡觉县| 新蔡县| 黎城县| 临猗县| 新闻| 留坝县| 临清市| 南郑县| 濉溪县| 九寨沟县| 吉林省| 伊吾县| 望都县| 彭阳县| 瓦房店市| 塔河县| 临湘市| 卓尼县| 卓资县| 遵义县| 吐鲁番市| 堆龙德庆县| 上虞市| 监利县| 博罗县| 三台县| 宜良县| 西畴县|