skill_db.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  1. //===== rAthena Documentation ================================
  2. //= Skill Database Structure
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20200324
  7. //===== Description: =========================================
  8. //= Explanation of the skill_db.yml file and structure.
  9. //============================================================
  10. ---------------------------------------
  11. Id: Unique skill ID.
  12. ---------------------------------------
  13. Name: Skill Aegis name.
  14. ---------------------------------------
  15. Description: Skill description.
  16. ---------------------------------------
  17. MaxLevel: Max skill level.
  18. ---------------------------------------
  19. Type: Skill type.
  20. None - No specific type. (Default)
  21. Weapon - Weapon type damage.
  22. Magic - Magic type damage.
  23. Misc - Misc type damage.
  24. ---------------------------------------
  25. TargetType: Skill target type.
  26. Passive - Passive skill. (Default)
  27. Attack - Damage enemies.
  28. Ground - Ground placement skill.
  29. Self - Self cast skill.
  30. Support - Friendly cast skill.
  31. Trap - Trap cast skill.
  32. ---------------------------------------
  33. DamageFlags: Skill damage properties.
  34. NoDamage - No damage skill. (Default)
  35. Splash - Has splash area.
  36. SplashSplit - Damage should be split among targets.
  37. IgnoreAtkCard - Skill ignores caster's % damage cards (Misc type always ignores).
  38. IgnoreElement - Skill ignores elemental adjustments.
  39. IgnoreDefense - Skill ignores target's defense (Misc type always ignores).
  40. IgnoreFlee - Skill ignores target's flee (Magic type always ignores)
  41. IgnoreDefCard - Skill ignores target's defense cards.
  42. IgnoreLongCard - Skill ignores caster's long range damage cards.
  43. Critical - Skill can critical.
  44. ---------------------------------------
  45. Flags: Skill information flags.
  46. IsQuest - Quest skill.
  47. IsNpc - NPC skill.
  48. IsWedding - Wedding skill.
  49. IsSpirit - Spirit skill.
  50. IsGuild - Guild skill.
  51. IsSong - Song/Dance skill.
  52. IsEnsemble - Ensemble skill.
  53. IsTrap - Trap skill.
  54. TargetSelf - Damages/targets self.
  55. NoTargetSelf - Cannot target self. If TargetType is Self, changes to Attack.
  56. PartyOnly - Usable on party (and enemies if offensive).
  57. GuildOnly - Usable on guild (and enemies if offensive).
  58. NoTargetEnemy - Disable on enemies (for non-offensive).
  59. IsShadowSpell - Make skill available for SC_AUTOSHADOWSPELL.
  60. IsChorus - Chorus skill.
  61. IgnoreBgReduction - Ignore Battleground reduction.
  62. IgnoreGvgReduction - Ignore GvG reduction.
  63. DisableNearNpc - Disable self/ground skills near NPC. In tandem with NoNearNpc node.
  64. TargetTrap - Damage traps. If TargetType is Trap.
  65. IgnoreLandProtector - Ignore SA_LANDPROTECTOR.
  66. AllowWhenHidden - Usable while hiding.
  67. AllowWhenPerforming - Usable while in dancing state.
  68. TargetEmperium - Damages/targets Emperium.
  69. IgnoreKagehumi - Ignore KG_KAGEHUMI.
  70. AlterRangeVulture - Skill range affected by AC_VULTURE.
  71. AlterRangeSnakeEye - Skill range affected by GS_SNAKEEYE.
  72. AlterRangeShadowJump - Skill range affected by NJ_SHADOWJUMP.
  73. AlterRangeRadius - Skill range affected by WL_RADIUS.
  74. AlterRangeResearchTrap - Skill range affected by RA_RESEARCHTRAP.
  75. IgnoreHovering - Ignore SC_HOVERING.
  76. AllowOnWarg - Usable while riding Warg.
  77. AllowOnMado - Usable while on Madogear.
  78. TargetManHole - Target enemy with SC__MANHOLE.
  79. TargetHidden - Target enemy with OPTION_HIDE.
  80. IncreaseDanceWithWugDamage - Increase SC_DANCEWITHWUG damage.
  81. IgnoreWugBite - Ignore RA_WUGBITE.
  82. IgnoreAutoGuard - Not blocked by SC_AUTOGUARD (When TargetType is Weapon only).
  83. IgnoreCicada - Not blocked by SC_UTSUSEMI or SC_BUNSINJYUTSU (When TargetType is Weapon only).
  84. ShowScale - Shows AoE area while casting
  85. ---------------------------------------
  86. Range: Skill range. Combo skills do not check for range when used. If range is < 5 the skill is considered melee-range.
  87. Can be defined in scalar form or sequence map form:
  88. Scalar Form
  89. Range: 1
  90. Sequence Map Form
  91. Range:
  92. - Level: 1
  93. Size: 1
  94. - Level: 2
  95. Size: 1
  96. - Level: 3
  97. Size: 2
  98. - Level: 4
  99. Size: 2
  100. - Level: 5
  101. Size: 3
  102. ---------------------------------------
  103. Hit: Skill hit type.
  104. Normal - Passive/No damage skill. (Default)
  105. Single - Single hit.
  106. Multi_Hit - Multiple hits.
  107. ---------------------------------------
  108. HitCount: Skill hit count. When positive the damage is increased by hits. Negative values the number of hits without increasing the total damage.
  109. Can be defined in scalar form or sequence map form:
  110. Scalar Form
  111. HitCount: 1
  112. Sequence Map Form
  113. HitCount:
  114. - Level: 1
  115. Count: 2
  116. - Level: 2
  117. Count: 4
  118. - Level: 3
  119. Count: 6
  120. - Level: 4
  121. Count: 8
  122. - Level: 5
  123. Count: 10
  124. ---------------------------------------
  125. Element: Skill element.
  126. Neutral (Default)
  127. Water
  128. Earth
  129. Fire
  130. Wind
  131. Poison
  132. Holy
  133. Dark
  134. Ghost
  135. Undead
  136. Weapon - Uses weapon element.
  137. Endowed - Uses endowed element.
  138. Random - Uses random element.
  139. Can be defined in scalar form or sequence map form:
  140. Scalar Form
  141. Element: Fire
  142. Sequence Map Form
  143. Element:
  144. - Level: 1
  145. Element: Neutral
  146. - Level: 2
  147. Element: Neutral
  148. - Level: 3
  149. Element: Poison
  150. - Level: 4
  151. Element: Poison
  152. - Level: 5
  153. Element: Poison
  154. ---------------------------------------
  155. SplashArea: Skill splash area of effect.
  156. -1 - Screen-wide.
  157. 0 - No splash.
  158. All other values follow the formula: value * 2 + 1
  159. 1 - 3x3
  160. 2 - 5x5
  161. 3 - 7x7
  162. 4 - 9x9
  163. 5 - 11x11
  164. 6 - 13x13
  165. 7 - 15x15
  166. 8 - 17x17
  167. 9 - 19x19
  168. 10 - 21x21
  169. 11 - 23x32
  170. 12 - 25x25
  171. 13 - 27x27
  172. 14 - 29x29
  173. 15 - 31x31
  174. Can be defined in scalar form or sequence map form:
  175. Scalar Form
  176. SplashArea: 1
  177. Sequence Map Form
  178. SplashArea:
  179. - Level: 1
  180. Area: 1
  181. - Level: 2
  182. Area: 1
  183. - Level: 3
  184. Area: 2
  185. - Level: 4
  186. Area: 2
  187. - Level: 5
  188. Area: 3
  189. ---------------------------------------
  190. ActiveInstance: Maximum amount of active skill instances that can be on the ground.
  191. Can be defined in scalar form or sequence map form:
  192. Scalar Form
  193. ActiveInstance: 1
  194. Sequence Map Form
  195. ActiveInstance:
  196. - Level: 1
  197. Max: 1
  198. - Level: 2
  199. Max: 1
  200. - Level: 3
  201. Max: 2
  202. - Level: 4
  203. Max: 2
  204. - Level: 5
  205. Max: 3
  206. ---------------------------------------
  207. Knockback: Amount of tiles the skill knockbacks.
  208. Can be defined in scalar form or sequence map form:
  209. Scalar Form
  210. Knockback: 1
  211. Sequence Map Form
  212. Range:
  213. - Level: 1
  214. Amount: 1
  215. - Level: 2
  216. Amount: 1
  217. - Level: 3
  218. Amount: 2
  219. - Level: 4
  220. Amount: 2
  221. - Level: 5
  222. Amount: 3
  223. ---------------------------------------
  224. CopyFlags: Determines if the skill is copyable.
  225. Skill - Type of skill that can copy.
  226. Plagiarism
  227. Reproduce
  228. RemoveRequirement - Ability to remove skill cast requirement.
  229. HpCost
  230. SpCost
  231. HpRateCost
  232. SpRateCost
  233. MaxHpTrigger
  234. ZenyCost
  235. Weapon
  236. Ammo
  237. State
  238. Status
  239. SpiritSphereCost
  240. ItemCost
  241. Equipment
  242. ---------------------------------------
  243. NoNearNPC: Determines if the skill can be used near a NPC.
  244. AdditionalRange - Number of cells from an NPC where the skill can be cast.
  245. If zero this will read the splash range value.
  246. If that is also zero then Unit Range + Unit Layout Range will be used.
  247. Type - Type of NPC that will block the skill.
  248. WarpPortal
  249. Shop
  250. Npc
  251. Tomb
  252. ---------------------------------------
  253. CastCancel: Cancel cast when hit.
  254. ---------------------------------------
  255. CastDefenseReduction: Defense reduction rate during skill cast.
  256. ---------------------------------------
  257. CastTime: Time to cast the skill in milliseconds.
  258. Can be defined in scalar form or sequence map form:
  259. Scalar Form
  260. CastTime: 1000
  261. Sequence Map Form
  262. CastTime:
  263. - Level: 1
  264. Time: 1000
  265. - Level: 2
  266. Time: 2000
  267. - Level: 3
  268. Time: 3000
  269. - Level: 4
  270. Time: 4000
  271. - Level: 5
  272. Time: 5000
  273. ---------------------------------------
  274. AfterCastActDelay: Time the character cannot use skills in milliseconds.
  275. Can be defined in scalar form or sequence map form:
  276. Scalar Form
  277. AfterCastActDelay: 1000
  278. Sequence Map Form
  279. AfterCastActDelay:
  280. - Level: 1
  281. Time: 1000
  282. - Level: 2
  283. Time: 2000
  284. - Level: 3
  285. Time: 3000
  286. - Level: 4
  287. Time: 4000
  288. - Level: 5
  289. Time: 5000
  290. ---------------------------------------
  291. AfterCastWalkDelay: Time before the character can move again in milliseconds.
  292. Can be defined in scalar form or sequence map form:
  293. Scalar Form
  294. AfterCastWalkDelay: 1000
  295. Sequence Map Form
  296. AfterCastWalkDelay:
  297. - Level: 1
  298. Time: 1000
  299. - Level: 2
  300. Time: 2000
  301. - Level: 3
  302. Time: 3000
  303. - Level: 4
  304. Time: 4000
  305. - Level: 5
  306. Time: 5000
  307. ---------------------------------------
  308. Duration1: Duration of the skill in milliseconds.
  309. Can be defined in scalar form or sequence map form:
  310. Scalar Form
  311. Duration1: 1000
  312. Sequence Map Form
  313. Duration1:
  314. - Level: 1
  315. Time: 1000
  316. - Level: 2
  317. Time: 2000
  318. - Level: 3
  319. Time: 3000
  320. - Level: 4
  321. Time: 4000
  322. - Level: 5
  323. Time: 5000
  324. ---------------------------------------
  325. Duration2: Duration of the skill in milliseconds.
  326. Can be defined in scalar form or sequence map form:
  327. Scalar Form
  328. Duration2: 1000
  329. Sequence Map Form
  330. Duration2:
  331. - Level: 1
  332. Time: 1000
  333. - Level: 2
  334. Time: 2000
  335. - Level: 3
  336. Time: 3000
  337. - Level: 4
  338. Time: 4000
  339. - Level: 5
  340. Time: 5000
  341. ---------------------------------------
  342. Cooldown: Time before the character can use the same skill again in milliseconds.
  343. Can be defined in scalar form or sequence map form:
  344. Scalar Form
  345. Cooldown: 1000
  346. Sequence Map Form
  347. Cooldown:
  348. - Level: 1
  349. Time: 1000
  350. - Level: 2
  351. Time: 2000
  352. - Level: 3
  353. Time: 3000
  354. - Level: 4
  355. Time: 4000
  356. - Level: 5
  357. Time: 5000
  358. ---------------------------------------
  359. FixedCastTime: Time that is fixed during cast of the skill in milliseconds. A value of -1 will use 20% of CastTime as FixedCastTime. See battle_config::default_fixed_castrate to adjust the rate.
  360. Can be defined in scalar form or sequence map form:
  361. Scalar Form
  362. FixedCastTime: 1000
  363. Sequence Map Form
  364. FixedCastTime:
  365. - Level: 1
  366. Time: 1000
  367. - Level: 2
  368. Time: 2000
  369. - Level: 3
  370. Time: 3000
  371. - Level: 4
  372. Time: 4000
  373. - Level: 5
  374. Time: 5000
  375. ---------------------------------------
  376. CastTimeFlags: Effects of the skill's cast time.
  377. IgnoreDex - Cast time not affected by DEX.
  378. IgnoreStatus - Cast time not affected by statuses (Suffragium, etc).
  379. IgnoreItemBonus - Cast time not affected by item bonuses.
  380. ---------------------------------------
  381. CastDelayFlags: Effects of the skill's delay.
  382. IgnoreDex - Delay not affected by DEX.
  383. IgnoreStatus - Delay not affected by statuses (Suffragium, etc).
  384. IgnoreItemBonus - Delay not affected by item bonuses.
  385. IgnoreDex only makes sense when battle_config::delay_dependon_dex is enabled.
  386. ---------------------------------------
  387. Requires: List of requirements to cast the skill.
  388. HpCost: HP required to cast.
  389. Can be defined in scalar form or sequence map form:
  390. Scalar Form
  391. HpCost: 10
  392. Sequence Map Form
  393. HpCost:
  394. - Level: 1
  395. Amount: 10
  396. - Level: 2
  397. Amount: 20
  398. - Level: 3
  399. Amount: 30
  400. - Level: 4
  401. Amount: 40
  402. - Level: 5
  403. Amount: 50
  404. ------------------
  405. SpCost: SP required to cast.
  406. Can be defined in scalar form or sequence map form:
  407. Scalar Form
  408. SpCost: 10
  409. Sequence Map Form
  410. SpCost:
  411. - Level: 1
  412. Amount: 10
  413. - Level: 2
  414. Amount: 20
  415. - Level: 3
  416. Amount: 30
  417. - Level: 4
  418. Amount: 40
  419. - Level: 5
  420. Amount: 50
  421. ------------------
  422. HpRateCost: HP rate required to cast. If positive, uses current HP, else uses Max HP.
  423. Can be defined in scalar form or sequence map form:
  424. Scalar Form
  425. HpRateCost: 10
  426. Sequence Map Form
  427. HpRateCost:
  428. - Level: 1
  429. Amount: 10
  430. - Level: 2
  431. Amount: 20
  432. - Level: 3
  433. Amount: 30
  434. - Level: 4
  435. Amount: 40
  436. - Level: 5
  437. Amount: 50
  438. ------------------
  439. SpRateCost: SP rate required to cast. If positive, uses current SP, else uses Max SP.
  440. Can be defined in scalar form or sequence map form:
  441. Scalar Form
  442. SpRateCost: 10
  443. Sequence Map Form
  444. SpRateCost:
  445. - Level: 1
  446. Amount: 10
  447. - Level: 2
  448. Amount: 20
  449. - Level: 3
  450. Amount: 30
  451. - Level: 4
  452. Amount: 40
  453. - Level: 5
  454. Amount: 50
  455. ------------------
  456. MaxHpTrigger: Maximum amount of HP to cast the skill.
  457. Can be defined in scalar form or sequence map form:
  458. Scalar Form
  459. MaxHpTrigger: 10
  460. Sequence Map Form
  461. MaxHpTrigger:
  462. - Level: 1
  463. Amount: 10
  464. - Level: 2
  465. Amount: 20
  466. - Level: 3
  467. Amount: 30
  468. - Level: 4
  469. Amount: 40
  470. - Level: 5
  471. Amount: 50
  472. ------------------
  473. ZenyCost: Zeny required to cast.
  474. Can be defined in scalar form or sequence map form:
  475. Scalar Form
  476. ZenyCost: 10
  477. Sequence Map Form
  478. ZenyCost:
  479. - Level: 1
  480. Amount: 10
  481. - Level: 2
  482. Amount: 20
  483. - Level: 3
  484. Amount: 30
  485. - Level: 4
  486. Amount: 40
  487. - Level: 5
  488. Amount: 50
  489. ------------------
  490. Weapon: Weapon required to cast.
  491. All (Default)
  492. Fist
  493. Dagger
  494. 1hSword
  495. 2hSword
  496. 1hSpear
  497. 2hSpear
  498. 1hAxe
  499. 2hAxe
  500. Mace
  501. 2hMace
  502. Staff
  503. Bow
  504. Knuckle
  505. Musical
  506. Whip
  507. Book
  508. Katar
  509. Revolver
  510. Rifle
  511. Gatling
  512. Shotgun
  513. Grenade
  514. Huuma
  515. 2hStaff
  516. ------------------
  517. Ammo: Ammo required to cast.
  518. None (Default)
  519. Arrow
  520. Dagger
  521. Bullet
  522. Shell
  523. Grenade
  524. Shuriken
  525. Kunai
  526. Cannonball
  527. Throwweapon
  528. ------------------
  529. AmmoAmount: Ammo amount required to cast.
  530. Can be defined in scalar form or sequence map form:
  531. Scalar Form
  532. AmmoAmount: 10
  533. Sequence Map Form
  534. AmmoAmount:
  535. - Level: 1
  536. Amount: 1
  537. - Level: 2
  538. Amount: 2
  539. - Level: 3
  540. Amount: 3
  541. - Level: 4
  542. Amount: 4
  543. - Level: 5
  544. Amount: 5
  545. ------------------
  546. State: Special state required to cast.
  547. None - No special state required.
  548. Hidden - Requires OPTION_HIDE, OPTION_CLOAK, or OPTION_CHASEWALK.
  549. Riding - Requires OPTION_RIDING or OPTION_DRAGON.
  550. Falcon - Requires OPTION_FALCON.
  551. Cart - Requires OPTION_CART for pre-renewal or SC_PUSH_CART for renewal.
  552. Shield - Requires a shield to be equipped.
  553. Recover_Weight_Rate - Requires weight to be less than 50% for pre-renewal or 70% for renewal.
  554. Move_Enable - Requires to be able to move.
  555. Water - Requires to be standing in water.
  556. RidingDragon - Requires OPTION_DRAGON.
  557. Wug - Requires OPTION_WUG.
  558. RidingWug - Requires OPTION_WUGRIDER.
  559. Mado - Requires OPTION_MADOGEAR.
  560. ElementalSpirit - Requires an Elemental Spirit to be summoned.
  561. ElementalSpirit2 - Requires an Elemental Spirit to be summoned and will be removed after.
  562. Peco - Requires OPTION_RIDING.
  563. Sunstance - Requires Sun/Universe Stance status be active.
  564. Moonstance - Requires Moon/Universe Stance status be active.
  565. Starstance - Requires Star/Universe Stance status be active.
  566. Universestance - Requires Universe Stance status be active.
  567. ------------------
  568. Status: Status change required to cast.
  569. For a full list, see src/map/status.hpp::sc_type.
  570. ------------------
  571. SphereCost: Spirit sphere required to cast.
  572. Can be defined in scalar form or sequence map form:
  573. Scalar Form
  574. SphereCost: 10
  575. Sequence Map Form
  576. SphereCost:
  577. - Level: 1
  578. Amount: 1
  579. - Level: 2
  580. Amount: 2
  581. - Level: 3
  582. Amount: 3
  583. - Level: 4
  584. Amount: 4
  585. - Level: 5
  586. Amount: 5
  587. ------------------
  588. ItemCost: Item required to cast. If the Level is supplied, then the ItemCost becomes skill level dependent.
  589. Levels 1 - 5 have no item cost but levels 6 - 10 require a Blue Gemstone.
  590. ItemCost:
  591. - Item: Blue_Gemstone
  592. Amount: 1
  593. Level: 6
  594. - Item: Blue_Gemstone
  595. Amount: 1
  596. Level: 7
  597. - Item: Blue_Gemstone
  598. Amount: 1
  599. Level: 8
  600. - Item: Blue_Gemstone
  601. Amount: 1
  602. Level: 9
  603. - Item: Blue_Gemstone
  604. Amount: 1
  605. Level: 10
  606. # All levels require a Blue Gemstone.
  607. ItemCost:
  608. - Item: Blue_Gemstone
  609. Amount: 1
  610. ------------------
  611. Equipment: Equipped item required to cast.
  612. ---------------------------------------
  613. Unit: Skill unit values.
  614. Id: Skill unit ID.
  615. For a full list, see src/map/skill.hpp::e_skill_unit_id.
  616. ------------------
  617. AlternateId: Alternate skill unit ID.
  618. For a full list, see src/map/skill.hpp::e_skill_unit_id.
  619. ------------------
  620. Layout: Skill unit layout.
  621. -1 - Screen-wide.
  622. 0 - No splash.
  623. All other values follow the formula: value * 2 + 1
  624. 1 - 3x3
  625. 2 - 5x5
  626. 3 - 7x7
  627. 4 - 9x9
  628. 5 - 11x11
  629. Can be defined in scalar form or sequence map form:
  630. Scalar Form
  631. Layout: 10
  632. Sequence Map Form
  633. Layout:
  634. - Level: 1
  635. Size: 1
  636. - Level: 2
  637. Size: 2
  638. - Level: 3
  639. Size: 3
  640. - Level: 4
  641. Size: 4
  642. - Level: 5
  643. Size: 5
  644. ------------------
  645. Range: Skill unit range.
  646. Can be defined in scalar form or sequence map form:
  647. Scalar Form
  648. Range: 10
  649. Sequence Map Form
  650. Range:
  651. - Level: 1
  652. Size: 1
  653. - Level: 2
  654. Size: 2
  655. - Level: 3
  656. Size: 3
  657. - Level: 4
  658. Size: 4
  659. - Level: 5
  660. Size: 5
  661. ------------------
  662. Interval: Skill unit interval in milliseconds.
  663. ------------------
  664. Target: Skill unit target type.
  665. Friend - Targets Party, Guild, Guild Allies, and neutral players.
  666. Party - Targets Party.
  667. Ally - Targets Party and Guild and Guild Allies.
  668. Guild - Targets Guild and Guild Allies.
  669. All - Targets all. (Default)
  670. Enemy - Targets enemy.
  671. Self - Targets self.
  672. SameGuild - Targets Guild but not Guild Allies.
  673. ------------------
  674. Flag: Skill unit flags.
  675. None - No flags.
  676. NoEnemy - If battle_config::defunit_not_enemy is enabled, the Target is changed to Friend.
  677. NoReiteration - Spell cannot be stacked.
  678. NoFootSet - Spell cannot be cast near/on targets.
  679. NoOverlap - Spell effects do not overlap.
  680. PathCheck - Only cells with a shootable path will be placed.
  681. NoPc - Spell cannot affect players.
  682. NoMob - Spell cannot affect mobs.
  683. Skill - Spell can affect skills.
  684. Dance - Dance unit.
  685. Ensemble - Duet unit.
  686. Song - Song unit.
  687. DualMode - Spell has effects both at an interval and when you step in/out.
  688. NoKnockback - Cannot be knocked back (only unit that can be damaged).
  689. RangedSingleUnit - Layout hack, use layout range property but only display center.
  690. CrazyWeedImmune - Immune to GN_CRAZYWEED.
  691. RemovedByFireRain - Removed by RL_FIRE_RAIN.
  692. KnockbackGroup - Knock back a whole skill group (by default, skill unit is knocked back by each unit).
  693. HiddenTrap - Hidden trap. See battle_config::traps_setting to enable this flag.