跳到主要内容

雷电将军

实用配置

使用 raiden 写在 config 里。 别名: raidenshogun, herexcellencythealmightynarukamiogoshogodofthunder

复制起手配置

raiden char lvl=90/90 cons=0 talent=9,9,9;
raiden add weapon="favoniussword" refine=5 lvl=90/90;
raiden add set="emblemofseveredfate" count=4;
raiden add stats hp=4780 atk=311 atk%=0.466 cr=0.311 cd=0.622 er=0.110;

连招示例

安全基础循环

这是最稳的起步模板。它会先确认元素战技/元素爆发是否可用,再执行动作,最后用普攻补空档。还不知道角色真正连招时,先用这个。

if .character.skill.ready

读取冷却状态。为真时现在可以释放;为假时模拟器会跳过这个动作。

attack:3

`attack:3` 表示连续三次普通攻击。测试连招时可以改这个数字。

这里不要写无限循环

这个 helper 只在被调用时运行一次。真正重复整套轴的部分,应该放在外层主 `for` 循环里。

复制连招

fn raiden_basic_loop() {
  if .raiden.skill.ready {
    raiden skill;
  }
  if .raiden.burst.ready {
    raiden burst;
  }
  raiden attack:3;
}

使用 low_plunge[collision=...]

0 表示没有碰撞伤害;1 表示有碰撞伤害。

low_plunge[collision=...]

动作参数写在该动作后面的方括号里。

复制连招

raiden low_plunge[collision=0];

使用 high_plunge[collision=...]

0 表示没有碰撞伤害;1 表示有碰撞伤害。

high_plunge[collision=...]

动作参数写在该动作后面的方括号里。

复制连招

raiden high_plunge[collision=0];

可写动作

attack 可直接使用

复制命令

raiden attack:3;

charge Need to use attack right before charge.

复制命令

raiden attack, charge;

skill 可直接使用

复制命令

raiden skill;

burst 可直接使用

复制命令

raiden burst;

low_plunge Previous action must be a jump buffed via Xianyun's burst for example.

复制命令

raiden low_plunge[collision=0];

high_plunge Previous action must be a jump buffed via Xianyun's burst for example.

复制命令

raiden high_plunge[collision=0];

dash 可直接使用

复制命令

raiden dash;

jump 可直接使用

复制命令

raiden jump;

walk No action followed by walk (except low_plunge and high_plunge) has proper frames.

复制命令

raiden walk;

swap 可直接使用

复制命令

raiden swap;

动作特殊参数

low_plunge[collision=...] - 0 表示没有碰撞伤害;1 表示有碰撞伤害。

复制命令

raiden low_plunge[collision=0];

high_plunge[collision=...] - 0 表示没有碰撞伤害;1 表示有碰撞伤害。

复制命令

raiden high_plunge[collision=0];

条件字段

没有记录特殊条目。

帧数据

视频作者: Kolibri#7675
计数: 表格 (作者: Kurt#5846)

Hitlag 数据

能力停顿时间缩放防御停顿召唤物
Q-N10.020.01truefalse
Q-N20.020.01truefalse
Q-N30.020.01truefalse
Q-N50.020.01truefalse

范围数据

能力形状中心X 偏移Y 偏移半径扇形角矩形 X矩形 Y备注
N1BoxPlayer--0.2--1.82.8-
N2CirclePlayer-0.52.5270---
N3BoxPlayer--1.2--1.84-
N4-1CirclePlayer-0.50.72.8----
N4-2CirclePlayer0.30.72.8----
N5CirclePlayer--3----
Q-N1BoxPlayer--0.1--3.84.8-
Q-N2BoxPlayer1-1--9.84.5-
Q-N3BoxPlayer--0.1--3.24.3-
Q-N4-1BoxPlayer1---116.6-
Q-N4-2BoxPlayer0.3-1.5--4.58.5-
Q-N5BoxPlayer--0.1--115.5-

已知问题

没有已知问题

名称

  • raiden
  • raidenshogun
  • herexcellencythealmightynarukamiogoshogodofthunder

可用动作

能力可用备注
attack-
chargeNeed to use attack right before charge.
aim-
skill-
burst-
low_plungePrevious action must be a jump buffed via Xianyun's burst for example.
high_plungePrevious action must be a jump buffed via Xianyun's burst for example.
dash-
jump-
walkNo action followed by walk (except low_plunge and high_plunge) has proper frames.
swap-

参数

能力参数说明
low_plungecollision0 for no collision dmg (default), 1 for collision dmg.
high_plungecollision0 for no collision dmg (default), 1 for collision dmg.

字段

没有字段