LUACN论坛

 找回密码
 加入我们

QQ登录

只需一步,快速开始

搜索
热搜: YJWOW MagicStone BoL
查看: 7744|回复: 2

SIMC -- 战斗例程翻译 -- 增强萨

[复制链接]
发表于 2016-10-22 13:42:24 | 显示全部楼层 |阅读模式
最近写了个增强的输出逻辑,照抄的SIMC例程,发现论坛有人在做相关的翻译系列,特此贡献出来,众人拾柴火焰高
  1. --风剪(打断技能)
  2. actions=wind_shear
  3. --嗜血,if 目标生命值<25% or 时间>0.500
  4. actions+=/bloodlust,if=target.health.pct<25|time>0.500
  5. --自动攻击
  6. actions+=/auto_attack
  7. --野性狼魂
  8. actions+=/feral_spirit
  9. --毁灭闪电,if 神器天赋头狼激活 and 上一个释放的是野性狼魂
  10. actions+=/crash_lightning,if=artifact.alpha_wolf.rank&prev_gcd.feral_spirit
  11. --嗑药,上古战神药水,if 野性狼魂剩余时间>5 or 者目标死亡时间<30
  12. actions+=/potion,name=old_war,if=feral_spirit.remains>5|target.time_to_die<=30
  13. --狂暴(巨魔种族天赋),if 升腾buff存在 or 天赋升腾未激活 or 等级<100
  14. actions+=/berserking,if=buff.ascendance.up|!talent.ascendance.enabled|level<100
  15. --血性狂怒(兽族天赋技能)
  16. actions+=/blood_fury
  17. --毁灭闪电,if 天赋毁灭风暴激活 and 可攻击敌人>=3
  18. actions+=/crash_lightning,if=talent.crashing_storm.enabled&active_enemies>=3
  19. --石拳(天赋技能,替换石化),if 石拳buff剩余时间<GCD and 漩涡值>=50 and 可攻击敌人>=3
  20. actions+=/boulderfist,if=buff.boulderfist.remains<gcd&maelstrom>=50&active_enemies>=3
  21. --石拳(天赋技能,替换石化),if 石拳buff剩余时间<GCD or (充能层数>1.75 and 漩涡值<=100 and 可攻击敌人<=2)
  22. actions+=/boulderfist,if=buff.boulderfist.remains<gcd|(charges_fractional>1.75&maelstrom<=100&active_enemies<=2)
  23. --毁灭闪电,if 毁灭闪电buff剩余时间<GCD and 可攻击敌人>=2
  24. actions+=/crash_lightning,if=buff.crash_lightning.remains<gcd&active_enemies>=2
  25. --风切(升腾天赋附带技能,替换风暴打击和普通攻击),if 可攻击敌人>=3 and 天赋冰雹未激活
  26. actions+=/windstrike,if=active_enemies>=3&!talent.hailstorm.enabled
  27. --风暴打击, if 可攻击敌人>=3 and 天赋冰雹未激活
  28. actions+=/stormstrike,if=active_enemies>=3&!talent.hailstorm.enabled
  29. --风切(升腾天赋附带技能,替换风暴打击和普通攻击),if 风暴使者buff触发
  30. actions+=/windstrike,if=buff.stormbringer.react
  31. --风暴打击, if 风暴使者buff触发
  32. actions+=/stormstrike,if=buff.stormbringer.react
  33. --冰封, if 天赋冰雹激活 and 冰封buff剩余时间<GCD
  34. actions+=/frostbrand,if=talent.hailstorm.enabled&buff.frostbrand.remains<gcd
  35. --火舌, if 火舌buff剩余时间<GCD
  36. actions+=/flametongue,if=buff.flametongue.remains<gcd
  37. --风歌(天赋技能)
  38. actions+=/windsong
  39. --升腾(天赋技能)
  40. actions+=/ascendance
  41. --空气之怒(天赋技能), if 没有在释放该技能
  42. actions+=/fury_of_air,if=!ticking
  43. --毁灭之风(神器技能)
  44. actions+=/doom_winds
  45. --毁灭闪电, if 可攻击敌人>=3
  46. actions+=/crash_lightning,if=active_enemies>=3
  47. --风切(升腾天赋附带技能,替换风暴打击和普通攻击)
  48. actions+=/windstrike
  49. --风暴打击
  50. actions+=/stormstrike
  51. --闪电箭, if 天赋超载激活 and 漩涡值>=60
  52. actions+=/lightning_bolt,if=talent.overcharge.enabled&maelstrom>=60
  53. --熔岩猛击, if 灼热之手buff触发(灼热之手是天赋)
  54. actions+=/lava_lash,if=buff.hot_hand.react
  55. --大地之刺(天赋技能)
  56. actions+=/earthen_spike
  57. --毁灭闪电, if 可攻击敌人>1 or 天赋毁灭风暴激活 or 野性狼魂剩余时间>5
  58. actions+=/crash_lightning,if=active_enemies>1|talent.crashing_storm.enabled|feral_spirit.remains>5
  59. --冰封, if 天赋冰雹激活 and 冰封buff剩余时间<4.8
  60. actions+=/frostbrand,if=talent.hailstorm.enabled&buff.frostbrand.remains<4.8
  61. --冰封, if 冰封buff剩余时间<4.8
  62. actions+=/flametongue,if=buff.flametongue.remains<4.8
  63. --裂地术(天赋技能)
  64. actions+=/sundering
  65. --熔岩猛击, if 漩涡值>=90
  66. actions+=/lava_lash,if=maelstrom>=90
  67. --石化
  68. actions+=/rockbiter
  69. --冰封
  70. actions+=/flametongue
  71. --石拳
  72. actions+=/boulderfist
复制代码


回复

使用道具 举报

 楼主| 发表于 2016-10-22 13:46:15 | 显示全部楼层
沙发抢个
回复 支持 反对

使用道具 举报

发表于 2016-10-23 11:55:55 | 显示全部楼层
哎呀~终于有人一起啦
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 加入我们

本版积分规则

小黑屋|手机版|Archiver|LUACN论坛

GMT+8, 2024-4-20 03:02 AM , Processed in 0.044077 second(s), 20 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表