差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
后一修订版
前一修订版
blocks:turret:scorch [2021/07/20 17:22] – [介绍] 硫缺铅blocks:turret:scorch [未知日期] (当前版本) – 外部编辑 (未知日期) 127.0.0.1
行 1: 行 1:
 +===== 火焰炮 =====
 +{{:blocks:block-scorch-ui.png|}}
 +==== 介绍 ====
 +焚烧任何靠近它的地面敌人。近距离高效
 +==== 普通 ====
 +生命值:400\\ 
 +尺寸:1x1\\ 
 +建造时间:0.57秒
 +=== 建造花费 ===
 +{{:items:copper.png?30*30|copper}}[[:items:copper|铜]]*25\\ 
 +{{:items:graphite.png?30*30|graphite}}[[:items:graphite | 石墨]]*22\\
 +==== 液体 ====
 +液体容量:20
 +==== 功能 ====
 +范围:7.5方块\\
 +误差:0度\\ 
 +每秒发射数:10\\ 
 +攻击空中单位:否\\ 
 +攻击地面单位:是\\ 
 +=== 弹药 ===
 +{{:items:coal.png?30*30|coal}}[[:items:coal|煤炭]]\\
 +16伤害\\ 
 +3x装弹数量\\ 
 +穿透
 +燃烧
 +
 +{{:items:pyratite.png?30*30|pyratite}}[[:items:pyratite|硫]]\\
 +25伤害\\ 
 +4x装弹数量\\ 
 +穿透
 +燃烧
 +==== 可选的增强 ====
 +{{:liquids:water.png?30*30|water}}[[:liquids:water|水]]*12/秒 1.12x装弹速度\\ 
 +{{:liquids:cryofluid.png?30*30|cryofluid}}[[:liquids:cryofluid|冷却液]]*12/秒 1.26x装弹速度\\ 
 +
 +==== 介绍 ====
 +
 +=== 大概 ===
 +火焰炮是短距离对地炮塔,可以造成高伤。
 +
 +=== 使用 ===
 +火焰炮相当于早期能用的[[:blocks:turret:fuse|雷光]],擅长集火前期有点威胁的T2和T3,但是它太费[[:items:coal|煤炭]]了。玩家通常还是会使用[[:blocks:turret:hail|冰雹炮]],因为[[:blocks:turret:hail|冰雹炮]]那远距离射程可以把敌人放风筝掉。
 +
 +值得一提的是,火焰炮是1x1炮台中DPS最高的
 +==== Script ====
 +用于创建此方块的代码(仅供参考):
 +<code>
 +scorch = new ItemTurret("scorch"){{
 +            requirements(Category.turret, ItemStack.with(Items.copper, 25, Items.graphite, 22));
 +            ammo(
 +            Items.coal, Bullets.basicFlame,
 +            Items.pyratite, Bullets.pyraFlame
 +            );
 +            recoil = 0f;
 +            reload = 5f;
 +            coolantMultiplier = 2f;
 +            range = 60f;
 +            shootCone = 50f;
 +            targetAir = false;
 +            ammoUseEffect = Fx.none;
 +            health = 400;
 +            shootSound = Sounds.flame;
 +}};
 +</code>
 +