skill_cast_db_re.txt 1.2 KB

123456789101112131415161718192021
  1. //=====================================================================================================
  2. //-- skil_cast_db_re.txt: entries in this file override skill_cast_db.txt -- file only used in Ragnarok Renewal Mode
  3. //=====================================================================================================
  4. // Skill Times Database
  5. //
  6. // Structure of Database:
  7. // SkillID,CastingTime,AfterCastActDelay,AfterCastWalkDelay,Duration1,Duration2,Cool Down
  8. //== Explained:
  9. // CastingTime : time to cast this skill, in miliseconds
  10. // AfterCastActDelay : "normal" delay, character cannot use skills, in miliseconds
  11. // AfterCastWalkDleay : amount of time before character can move again, in miliseconds
  12. // Duration1 / Duration2 : usually the durations used by the skill, at special cases it is used to hold special data
  13. // Cool Down : amount of time until character can re-use this skill, in miliseconds
  14. //== Extra
  15. // On all fields you can use ':' as a delimiter to level-specific values,
  16. // - Example using SM_PROVOKE
  17. // - Original:6,0,0,0,30000,0,1000
  18. // - ModifiedTo:6,0,0,0,30000,0,1000:2500:3000:etc
  19. // - Makes lvl 1 have 1000 (1s) cool down, lvl 2 2500 (2.5s), lvl 3 3000, and so on.
  20. //==========================================