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

教程部分
玄武 -> 能量場(chǎng)/EnergyFieldAbility

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

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

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
即單位, 教程見上期
