클로린드
실전 설정
사용 clorinde config에 씁니다. 별칭: 등록된 별칭이 없습니다.
시작 설정 복사
clorinde char lvl=90/90 cons=0 talent=9,9,9;
clorinde add weapon="favoniussword" refine=5 lvl=90/90;
clorinde add set="emblemofseveredfate" count=4;
clorinde add stats hp=4780 atk=311 atk%=0.466 cr=0.311 cd=0.622 er=0.110;콤보 예시
Night Watch loop
During skill state, attack until Bond of Life is high enough, then press skill again.
.clorinde.status.clorinde-night-watch
True while Clorinde is inside her skill stance. The loop ends when the stance ends.
.clorinde.bolratio >= 1
Reads Bond of Life as a ratio. When it is high enough, skill becomes the spender.
while status
Only loop while the status exists. Avoid `while 1` for stance-only logic.
콤보 복사
fn clorinde_combo() {
clorinde skill;
while .clorinde.status.clorinde-night-watch {
if .clorinde.bolratio >= 1 {
clorinde skill;
} else {
clorinde attack;
}
}
}Combo into burst
Same loop, then burst after the stance ends.
콤보 복사
clorinde skill;
while .clorinde.status.clorinde-night-watch {
if .clorinde.bolratio >= 1 {
clorinde skill;
} else {
clorinde attack;
}
}
clorinde burst;안전한 기본 루프
처음 시작할 때 가장 안전한 패턴입니다. 스킬/버스트가 준비됐는지 확인한 뒤 사용하고, 남는 시간은 평타로 채웁니다. 캐릭터 콤보를 아직 모를 때 여기서 시작하세요.
if .character.skill.ready
쿨다운을 읽습니다. ready면 지금 사용할 수 있고, false면 시뮬레이터가 그 행동을 건너뜁니다.
attack:3
`attack:3`은 평타 3회를 뜻합니다. 테스트하면서 숫자를 바꿔보세요.
여기에는 무한 루프를 넣지 마세요
이 helper는 호출될 때 한 번만 실행됩니다. 전체 반복은 바깥의 메인 `for` 루프에 둡니다.
콤보 복사
fn clorinde_basic_loop() {
if .clorinde.skill.ready {
clorinde skill;
}
if .clorinde.burst.ready {
clorinde burst;
}
clorinde attack:3;
}쓸 수 있는 행동
attack 직접 사용 가능
명령 복사
clorinde attack:3;charge Need to use attack right before charge.
명령 복사
clorinde attack, charge;skill 직접 사용 가능
명령 복사
clorinde skill;burst 직접 사용 가능
명령 복사
clorinde burst;dash 직접 사용 가능
명령 복사
clorinde dash;jump 직접 사용 가능
명령 복사
clorinde jump;walk 직접 사용 가능
명령 복사
clorinde walk;swap 직접 사용 가능
명령 복사
clorinde swap;행동 특수 파라미터
기록된 특수 항목이 없습니다.
조건용 필드
기록된 특수 항목이 없습니다.
프레임
카운트: 시트 (출처: shizukayuki)
Hitlag 데이터
- 일반 공격
- 강공격
- 원소전투 스킬
- 원소폭발
- 운명의 자리
| 능력 | 정지 시간 | 스케일 | 방어 정지 | 설치물 |
|---|---|---|---|---|
| N1 | 0.03 | 0.01 | true | false |
| N2 | 0.03 | 0.01 | true | false |
| N3-1 | 0.03 | 0.01 | true | false |
| N3-2 | 0.03 | 0.01 | true | false |
| N4-1 | 0.02 | 0.05 | true | false |
| N4-2 | 0.02 | 0.05 | true | false |
| N4-3 | 0.02 | 0.05 | true | false |
| N5 | 0.03 | 0.05 | true | false |
| 능력 | 정지 시간 | 스케일 | 방어 정지 | 설치물 |
|---|---|---|---|---|
| CA | 0 | 0.02 | false | false |
| 능력 | 정지 시간 | 스케일 | 방어 정지 | 설치물 |
|---|---|---|---|---|
| Dash-NoBoL | 0 | 0.01 | false | false |
| Dash-Regular | 0 | 0.01 | false | false |
| Dash-FullBoL | 0 | 0.01 | false | false |
| 능력 | 정지 시간 | 스케일 | 방어 정지 | 설치물 |
|---|---|---|---|---|
| Burst | 0 | 0.1 | false | false |
| 능력 | 정지 시간 | 스케일 | 방어 정지 | 설치물 |
|---|---|---|---|---|
| C1-Hit | 0 | 0.01 | false | false |
범위 데이터
- 일반 공격
- 원소전투 스킬
- 원소폭발
- 운명의 자리
| 능력 | 형태 | 중심 | X 오프셋 | Y 오프셋 | 반경 | 부채꼴 각도 | 박스 X | 박스 Y | 메모 |
|---|---|---|---|---|---|---|---|---|---|
| N1 | Circle | Player | - | 1.1 | 1.7 | - | - | - | - |
| N2 | Circle | Player | - | 1.3 | 1.9 | - | - | - | - |
| N3 | Circle | Player | - | 1.2 | 2.1 | - | - | - | - |
| N4-1 | Box | Player | - | 1.3 | - | - | 2 | 3.5 | - |
| N4-2 | Box | Player | - | 1.3 | - | - | 2 | 3 | - |
| N4-3 | Box | Player | - | 1.3 | - | - | 2 | 3 | - |
| N5 | Circle | Player | - | 1.4 | 2.5 | - | - | - | - |
| 능력 | 형태 | 중심 | X 오프셋 | Y 오프셋 | 반경 | 부채꼴 각도 | 박스 X | 박스 Y | 메모 |
|---|---|---|---|---|---|---|---|---|---|
| SkillAttack-100BoL | Box | PrimaryTarget | - | - | - | - | 2 | 14 | - |
| SkillAttack | Circle | PrimaryTarget | - | - | 0.6 | - | - | - | - |
| SkillDash-NoBoL | Circle | PrimaryTarget | - | - | 0.6 | - | - | - | - |
| SkillDash-FullBoL | Circle | PrimaryTarget | - | - | 0.8 | - | - | - | - |
| SkillDash-RegularBoL | Circle | PrimaryTarget | - | - | 0.8 | - | - | - | - |
| 능력 | 형태 | 중심 | X 오프셋 | Y 오프셋 | 반경 | 부채꼴 각도 | 박스 X | 박스 Y | 메모 |
|---|---|---|---|---|---|---|---|---|---|
| Burst | Box | Player | - | -1 | - | - | 11.2 | 9 | - |
| 능력 | 형태 | 중심 | X 오프셋 | Y 오프셋 | 반경 | 부채꼴 각도 | 박스 X | 박스 Y | 메모 |
|---|---|---|---|---|---|---|---|---|---|
| C1-Hit | Circle | Player | - | -3 | 4 | - | - | - | - |
| C6-Hit | Circle | PrimaryTarget | - | - | 8 | - | - | - | - |
알려진 문제
이름
- clorinde
사용 가능한 행동
| 능력 | 가능 | 메모 |
|---|---|---|
attack | ✔ | - |
charge | ⚠ | Need to use attack right before charge. |
aim | ❌ | - |
skill | ✔ | - |
burst | ✔ | - |
low_plunge | ❌ | - |
high_plunge | ❌ | - |
dash | ✔ | - |
jump | ✔ | - |
walk | ✔ | - |
swap | ✔ | - |