home *** CD-ROM | disk | FTP | other *** search
/ Igromania 2000 September / Igromania_09.iso / GameZone / Vampire / Mods / Abilities / Abilitiesmod.exe / abilities.nob / misc / game.ndd < prev    next >
Text File  |  2000-07-25  |  40KB  |  297 lines

  1. #########################################################################################
  2. #
  3. # DISCIPLINE DEFINITIONS
  4. #
  5. #########################################################################################
  6. #
  7. # Line format:       
  8. #
  9. # name group icon script sound flags type minDist maxDist fData cast xpc c0 c1 c2 c3 c4 r0 r1 r2 r3 r4 cs0 cv0 cs1 cv1 cs2 cv2
  10. #
  11. # name          name of the discipline
  12. # group         group (tab) the discipline belongs to
  13. # icon          icon for the discipline
  14. # script        name of the script (CASE SENSITIVE as any Java related stuff!!!)
  15. # sound         the casting sound, or '-'
  16. # flags         flags for how the discipline works (see list below)
  17. # type          type of dicipline (for AI, see list below)
  18. # minDist       minimum distance to cast (for AI)
  19. # maxDist       maximum distance to cast (for AI)
  20. # fData         additional float data
  21. # cast          cast animation
  22. # xpc           initial cost in experience to "buy" the discipline
  23. # cN            cost in blood to cast per level
  24. # rN            time in ms before the discipline can be recast
  25. # csN           check stat
  26. # cvN           check value
  27. #
  28. #
  29. # Flags:
  30. #
  31. # TARGET NONE            0x01
  32. # TARGET AREA            0x02
  33. # TARGET INVENTORY    0x04
  34. # TARGET ENEMY        0x08
  35. # TARGET FRIENDLY    0x10
  36. # OFFENSIVE        0x20
  37. # TARGET DEAD           0x40
  38. # TARGET HEAD           0x80
  39. #
  40. # PROJ            0x2000            projectile, should try to avoid hitting friends in the back
  41. # AOE            0x4000            explosion, should try to avoid hitting friends (radius is in fData)
  42. # SHAPE CHANGE        0x8000            this is a shape change that cannot be combined with other shape changes
  43. # TERRIFYING        0x10000            should terrify/astonish mortals (peds) witnessing its use
  44. # NOPARTYNOTIFY         0x20000                 counter to OFFENSIVE, does not notify party members of this 'attack'
  45. #
  46. # Types:
  47. #
  48. # NONE               0       AI cannot use or use only in special conditions
  49. # HEAL               1       Healing discipline    (when damaged)
  50. # BUFF               2       Buffing discipline    (start of fight generally)
  51. # SUMMON           3       Summoning discipline    (start of fight generally)
  52. # HIDE               4       Hide, sneak, etc.    (preferably at start of fight or when damaged too much)
  53. # SENSE         5       Sense discipline        (used by AI on losing its target)
  54. # FEED          6       Feed discipline
  55. # RESERVED      7       (reserved, do not use)
  56. # RESERVED      8       (reserved, do not use)
  57. # RESERVED      9       (reserved, do not use)
  58. # DAMAGE        10      Damage discipline    (in fight damage)
  59. # MIND               11      Mind/control        (in fight mind control, fear, mesmerize, etc.)
  60. # FRENZY        12      Makes frenzy higher
  61. #
  62. #
  63. # Stats:
  64. #
  65. #   0           STRENGTH
  66. #   1           DEXTERITY
  67. #   2           STAMINA
  68. #   3           PERCEPTION
  69. #   4           INTELLIGENCE
  70. #   5           WITS
  71. #   6           BLOOD
  72. #   7           HUMANITY
  73. #   8           FRENZY
  74. #   9           GENERATION
  75. #  10           FAITH
  76. #  11           CHARISMA
  77. #  12           MANIPULATION
  78. #  13           APPEARANCE
  79. #  14           FRENZYRATING
  80. #  15           BLOODRATING
  81. #  16           BLOODPOOLSIZE
  82. #
  83. #
  84. # Cast animations: 
  85. #
  86. # GENERAL       0
  87. # HANDS         1
  88. # THROW         2
  89. # SPIT          3
  90. # NONE          4
  91. #
  92. #########################################################################################
  93. #
  94. #  08-31-99 YB  Original definition and recode from the old .INI format
  95. #  09-02-99 YB  Added support for initial xp costs
  96. #  10-18-99 YB  Added support for the AI values
  97. #  11-22-99 YB  Added support for the stat checks
  98. #
  99. #########################################################################################
  100.  
  101.  
  102. # name                  group                           icon                    script                          sound                           flags   type    minDist maxDist fData   cast    xpc     c0      c1      c2      c3      c4      r0      r1      r2      r3      r4      cs0 cv0 cs1 cv1 cs2 cv2  
  103.  
  104.  
  105. # COMMON                -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  106.                         
  107. Feed                    DGRP_Common                     feedingIcon             DisciplineFeed                  -                               0x20038 6       0.0     9999.0  0.0     4       750     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  108. BloodHealing            DGRP_Common                     bloodHealingIcon        DisciplineBloodHealing          actionWhoosh_03.WAV             0x01    1       0.0     9999.0  0.0     0       250     5       5       5       5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  109. BloodStrength           DGRP_Common                     bloodStrengthIcon       DisciplineBloodStrength         actionWhoosh_03.WAV             0x01    2       0.0     9999.0  0.0     0       500     5       5       5       5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  110. BloodDexterity          DGRP_Common                     bloodDexterityIcon      DisciplineBloodDexterity        actionWhoosh_03.WAV             0x01    2       0.0     9999.0  0.0     0       500     5       5       5       5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  111. BloodStamina            DGRP_Common                     bloodStaminaIcon        DisciplineBloodStamina          actionWhoosh_03.WAV             0x01    2       0.0     9999.0  0.0     0       500     5       5       5       5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  112. Awaken                  DGRP_Common                     awakenIcon              DisciplineAwaken                disciplineCast_whisperCast.WAV  0x100D0 0       0.0     9999.0  0.0     1       1000    25      25      25      25      25      1000    1000    1000    1000    1000    -   -   -   -   -   -
  113. WalkTheAbyss            DGRP_Common                     walkTheAbyssIcon        DisciplineWalkTheAbyss          teleport_02.WAV                 0x10001 0       0.0     9999.0  0.0     0       1250    25      20      15      10      10      1000    1000    1000    1000    1000    4   25  5   25  -   -
  114. #Nuke                    DGRP_Common                     nukeIcon                DisciplineNuke                  -                               0x28    0       0.0     9999.0  0.0     4       0       0       0       0       0       0       200     200     200     200     200     -   -   -   -   -   -
  115.  
  116.  
  117. # ANIMALISM             -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  118.                                                                                                                 
  119. FeralWhispers           DGRP_Animalism                  feralWhispersIcon       DisciplineFeralWhispers         disciplineCast_crystalWind.WAV  0x08    0       0.0     1500.0  0.0     0       250     10      10      5       5       5       1000    1000    1000    1000    1000    12  25  -   -   -   -
  120. Beckoning               DGRP_Animalism                  beckoningIcon           DisciplineBeckoning             disciplineCast_crystalWind.WAV  0x10001 3       0.0     9999.0  0.0     1       500     12      12      12      10      10      1000    1000    1000    1000    1000    11  35  -   -   -   -
  121. QuellBeast              DGRP_Animalism                  quellTheBeastIcon       DisciplineQuellBeast            disciplineCast_crystalWind.WAV  0x39    0       0.0     1500.0  0.0     0       750     15      15      15      10      10      1000    1000    1000    1000    1000    12  50  -   -   -   -
  122. SubsumeTheSpirit        DGRP_Animalism                  subsumeSpiritIcon       DisciplineSubsumeTheSpirit      disciplineCast_crystalWind.WAV  0x08    0       0.0     1500.0  0.0     0       1000    20      20      20      15      15      1000    1000    1000    1000    1000    12  60  -   -   -   -
  123. DrawingOutBeast         DGRP_Animalism                  drawingOutTheBeastIcon  DisciplineDrawingOutBeast       disciplineCast_crystalWind.WAV  0x08    12      0.0     1500.0  0.0     1       1500    25      25      25      20      20      1000    1000    1000    1000    1000    12  70  -   -   -   -
  124.  
  125.  
  126. # AUSPEX                -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  127.  
  128. HeightenedSenses        DGRP_Auspex                     heightenedSensesIcon    DisciplineHeightenedSenses      actionWhoosh_10.WAV             0x01    5       0.0     9999.0  0.0     0       250     5       5       5       5       5       1000    1000    1000    1000    1000    3   25  -   -   -   -
  129. AuraPerception          DGRP_Auspex                     auraPerceptionIcon      DisciplineAuraPerception        actionWhoosh_10.WAV             0x18    0       0.0     1500.0  0.0     0       500     5       5       5       5       5       1000    1000    1000    1000    1000    3   35  -   -   -   -
  130. SpiritsTouch            DGRP_Auspex                     spiritsTouchIcon        DisciplineSpiritsTouch          actionWhoosh_10.WAV             0x04    0       0.0     9999.0  0.0     0       750     15      15      15      10      10      1000    1000    1000    1000    1000    3   30  -   -   -   -
  131. PsychicProjection       DGRP_Auspex                     psychicProjectionIcon   DisciplinePsychicProjection     actionWhoosh_10.WAV             0x01    0       0.0     9999.0  0.0     0       1000    20      20      20      15      15      1000    1000    1000    1000    1000    -   -   -   -   -   -
  132.  
  133.  
  134. # CELERITY              -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  135.  
  136. Celerity                DGRP_Celerity                   celerityIcon            DisciplineCelerity              actionWhoosh_09.WAV             0x01    2       0.0     9999.0  0.0     0       500     30      30      30      30      30      1000    1000    1000    1000    1000    -   -   -   -   -   -
  137.  
  138.  
  139. # OBFUSCATE             -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  140.  
  141. CloakOfShadows          DGRP_Obfuscate                  cloakOfShadowsDIcon     DisciplineCloakOfShadows        actionWhoosh_08.WAV             0x01    4       0.0     9999.0  0.0     0       750     10      10      10      10      10      1000    1000    1000    1000    1000    5   25  -   -   -   -
  142. Mask1000Faces           DGRP_Obfuscate                  Mask1000FacesIcon       DisciplineMask1000Faces         actionWhoosh_08.WAV             0x10018 0       0.0     9999.0  0.0     0       500     10      10      10      10      10      1000    1000    1000    1000    1000    5   30  -   -   -   -
  143. CloakTheGathering       DGRP_Obfuscate                  cloakTheGatheringIcon   DisciplineCloakTheGathering     actionWhoosh_08.WAV             0x01    4       0.0     9999.0  0.0     0       1500    25      25      25      20      20      1000    1000    1000    1000    1000    5   40  -   -   -   -
  144.  
  145.  
  146. # DEMENTATION           -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  147.  
  148. Passion                 DGRP_Dementation                passionIcon             DisciplinePassion               disciplineCast_whisperCast.WAV  0x08    12      0.0     1000.0  0.0     1       250     10      5       5       5       5       2000    2000    2000    1000    1000    11  25  -   -   -   -
  149. TheHaunting             DGRP_Dementation                theHauntingIcon         DisciplineTheHaunting           disciplineCast_whisperCast.WAV  0x08    11      0.0     1000.0  0.0     1       500     10      10      10      5       5       2000    2000    2000    1000    1000    12  35  -   -   -   -
  150. EyesOfChaos             DGRP_Dementation                eyesOfChaosIcon         DisciplineEyesOfChaos           disciplineCast_whisperCast.WAV  0x18    0       0.0     1000.0  0.0     0       750     15      15      15      10      10      2000    2000    2000    1000    1000    3   50  -   -   -   -
  151. VoiceOfMadness          DGRP_Dementation                voiceOfMadnessIcon      DisciplineVoiceOfMadness        disciplineCast_whisperCast.WAV  0x08    11      0.0     1000.0  0.0     0       1000    20      20      20      15      15      2000    2000    2000    1000    1000    12  60  -   -   -   -
  152.  
  153.  
  154. # DOMINATE              -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  155.  
  156. Command                 DGRP_Dominate                   commandIcon             DisciplineCommand               disciplineCast_engulf.WAV       0x08    0       0.0     1000.0  0.0     0       250     10      10      10      5       5       2000    2000    2000    1000    1000    12  25  -   -   -   -
  157. Mesmerize               DGRP_Dominate                   mesmerizeIcon           DisciplineMesmerize             disciplineCast_engulf.WAV       0x08    11      0.0     1000.0  0.0     0       500     15      15      15      10      10      2000    2000    2000    1000    1000    12  35  -   -   -   -
  158. TheForgetfulMind        DGRP_Dominate                   forgetfulMindIcon       DisciplineTheForgetfulMind      disciplineCast_engulf.WAV       0x08    11      0.0     1000.0  0.0     0       750     20      20      20      15      15      2000    2000    2000    1000    1000    5   50  -   -   -   -
  159. Possession              DGRP_Dominate                   possessionIcon          DisciplinePossession            disciplineCast_engulf.WAV       0x08    0       0.0     1000.0  0.0     0       1000    25      25      25      20      20      2000    2000    2000    1000    1000    11  60  -   -   -   -
  160.  
  161.  
  162. # FORTITUDE             -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  163.  
  164. Fortitude               DGRP_Fortitude                  fortitudeIcon           DisciplineFortitude             disciplineCast_diesBassum.WAV   0x01    2       0.0     9999.0  0.0     1       500     20      20      20      20      20      1000    1000    1000    1000    1000    -   -   -   -   -   -
  165.  
  166.  
  167. # POTENCE               -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  168.  
  169. Potence                 DGRP_Potence                    potenceIcon             DisciplinePotence               disciplineCast_whineProp.WAV    0x01    2       0.0     9999.0  0.0     1       500     20      20      20      20      20      1000    1000    1000    1000    1000    -   -   -   -   -   -
  170.  
  171.  
  172. # PROTEAN               -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  173.  
  174. EyesOfTheBeast          DGRP_Protean                    eyesOfTheBeastIcon      DisciplineEyesOfTheBeast        disciplineCast_whineProp.WAV    0x01    5       0.0     9999.0  0.0     0       250     5       5       5       5       5       1000    1000    1000    1000    1000    3   25  -   -   -   - 
  175. FeralClaws              DGRP_Protean                    ferrelClawsIcon         DisciplineFeralClaws            disciplineCast_whineProp.WAV    0x18001 2       0.0     9999.0  0.0     1       500     10      10      10      5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  176. EarthMeld               DGRP_Protean                    earthMeldIcon           DisciplineEarthMeld             disciplineCast_whineProp.WAV    0x18001 0       0.0     9999.0  0.0     0       750     15      15      15      10      10      1000    1000    1000    1000    1000    -   -   -   -   -   -
  177. ShapeOfTheBeast         DGRP_Protean                    shapeOfTheBeastIcon     DisciplineShapeOfTheBeast       wolfTransform.WAV               0x18001 2       0.0     9999.0  0.0     0       1000    20      20      20      10      10      1000    1000    1000    1000    1000    -   -   -   -   -   -
  178. MistForm                DGRP_Protean                    mistFormIcon            DisciplineMistForm              disciplineCast_whineProp.WAV    0x18001 0       0.0     9999.0  0.0     0       1500    25      25      25      20      20      1000    1000    1000    1000    1000    -   -   -   -   -   -
  179.  
  180.  
  181. # PRESENCE              -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  182.  
  183. Awe                     DGRP_Presence                   aweIcon                 DisciplineAwe                   disciplineCast_whirlwind.WAV    0x08    11      0.0     1000.0  0.0     1       250     5       5       5       5       5       2000    2000    2000    1000    1000    11  25  -   -   -   -
  184. DreadGaze               DGRP_Presence                   dreadGazeIcon           DisciplineDreadGaze             disciplineCast_whirlwind.WAV    0x08    11      0.0     1000.0  0.0     1       500     10      10      10      5       5       2000    2000    2000    1000    1000    11  35  -   -   -   -
  185. Entrancement            DGRP_Presence                   entrancementIcon        DisciplineEntrancement          disciplineCast_whirlwind.WAV    0x08    0       0.0     1000.0  0.0     1       750     15      15      15      10      10      2000    2000    2000    1000    1000    13  50  -   -   -   -
  186. Majesty                 DGRP_Presence                   majestyIcon             DisciplineMajesty               disciplineCast_whirlwind.WAV    0x01    0       0.0     9999.0  0.0     1       1500    20      20      20      15      15      2000    2000    2000    1000    1000    13  60  -   -   -   -
  187.  
  188.  
  189. # MORTIS                -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  190.  
  191. ShamblingHordes         DGRP_Mortis                     shamblingHordesIcon     DisciplineShamblingHordes       disciplineCast_whisperCast.WAV  0x10040 0       0.0     1000.0  0.0     1       250     10      10      10      5       5       2000    2000    2000    1000    1000    5   25  -   -   -   -
  192. VigorMortis             DGRP_Mortis                     vigorMortisIcon         DisciplineVigorMortis           disciplineCast_whisperCast.WAV  0x10040 0       0.0     1000.0  0.0     1       500     15      15      15      10      10      2000    2000    2000    1000    1000    4   30  5   30  -   -
  193. SummonSoul              DGRP_Mortis                     summonSoulIcon          DisciplineSummonSoul            disciplineCast_whisperCast.WAV  0x10001 3       0.0     9999.0  0.0     1       750     20      20      20      20      20      2000    2000    2000    1000    1000    3   50  -   -   -   -
  194. PlagueWind              DGRP_Mortis                     plagueWindIcon          DisciplinePlagueWind            plagueWind_exhale_01.WAV        0x2022  10      0.0     1000.0  80.0    3       1000    25      25      25      20      20      2000    2000    2000    1000    1000    4   60  -   -   -   -
  195. BlackDeath              DGRP_Mortis                     blackDeathIcon          DisciplineBlackDeath            disciplineCast_whisperCast.WAV  0x28    10      0.0      200.0  0.0     1       1500    30      30      30      25      25      3000    3000    2000    2000    1000    4   70  -   -   -   -
  196.  
  197.  
  198. # THAUMATURGY           -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  199.  
  200. #-- BloodPath
  201.  
  202. BloodRage               DGRP_Thau_BloodPath             bloodRageIcon           DisciplineBloodRage             disciplineCast_wobbleSputtr.WAV 0x28    10      0.0     1000.0  0.0     0       250     10      10      10      5       5       2000    2000    2000    1000    1000    4   25  5   25  -   -
  203. BloodOfPotency          DGRP_Thau_BloodPath             bloodOfPotencyIcon      DisciplineBloodOfPotency        disciplineCast_wobbleSputtr.WAV 0x01    2       0.0     9999.0  0.0     0       500     15      15      15      10      10      2000    2000    2000    1000    1000    -   -   -   -   -   -
  204. TheftOfVitae            DGRP_Thau_BloodPath             theftOfVitaeIcon        DisciplineTheftOfVitae          disciplineCast_wobbleSputtr.WAV 0x28    10      0.0      550.0  0.0     1       750     20      20      20      15      15      4000    4000    4000    2000    2000    4   40  -   -   -   -
  205. CauldronOfBlood         DGRP_Thau_BloodPath             cauldronOfBloodIcon     DisciplineCauldronOfBlood       disciplineCast_wobbleSputtr.WAV 0x28    10      0.0      200.0  0.0     2       1000    25      25      25      20      20      3000    3000    2000    2000    1000    4   50  -   -   -   -
  206.  
  207. #-- LureOfFlames
  208.  
  209. Torch                   DGRP_Thau_LureOfFlames          torchIcon               DisciplineTorch                 actionWhoosh_11.WAV             0x01    0       0.0     9999.0  0.0     2       250     5       5       5       3       3       1000    1000    1000    1000    1000    4   25  -   -   -   -
  210. Fireball                DGRP_Thau_LureOfFlames          fireballIcon            DisciplineFireball              actionWhoosh_11.WAV             0x4028  10      0.0     1000.0  0.0     2       500     10      10      10      5       5       1000    1000    1000    1000    1000    4   35  -   -   -   -
  211. FlameRing               DGRP_Thau_LureOfFlames          FlameRingIcon           DisciplineFlameRing             disciplineCast_filterWah.WAV    0x01    0       0.0     9999.0  0.0     2       750     15      15      15      10      10      1000    1000    1000    1000    1000    4   50  -   -   -   -
  212. Immolate                DGRP_Thau_LureOfFlames          immolateIcon            DisciplineImmolate              disciplineCast_filterWah.WAV    0x28    10      0.0      200.0  0.0     2       1000    20      20      20      15      15      1000    1000    1000    1000    1000    4   60  -   -   -   -
  213. FireStorm               DGRP_Thau_LureOfFlames          fireStormIcon           DisciplineFireStorm             actionWhoosh_11.WAV             0x22    10      0.0     1000.0  0.0     3       1500    25      25      20      20      15      2000    2000    2000    1000    1000    4   70  -   -   -   -
  214.  
  215. #-- HandsOfDestruction
  216.  
  217. Decay                   DGRP_Thau_HandsOfDestruction    decayIcon               DisciplineDecay                 disciplineCast_fleshScream.WAV  0x28    10      0.0      200.0  0.0     2       250     5       5       5       5       5       2000    2000    2000    1000    1000    4   25  7  -60  -   -
  218. AcidicTouch             DGRP_Thau_HandsOfDestruction    acidicTouchIcon         DisciplineAcidicTouch           disciplineCast_fleshScream.WAV  0x28    10      0.0      200.0  0.0     2       500     15      15      15      10      10      2000    2000    2000    1000    1000    4   35  7  -50  -   -
  219. Atrophy                 DGRP_Thau_HandsOfDestruction    atrophyIcon             DisciplineAtrophy               disciplineCast_fleshScream.WAV  0x28    10      0.0      200.0  0.0     2       750     20      20      20      15      15      3000    3000    2000    2000    1000    4   50  7  -35  -   -
  220. TurnToDust              DGRP_Thau_HandsOfDestruction    turnToDustIcon          DisciplineTurnToDust            disciplineCast_fleshScream.WAV  0x28    10      0.0      200.0  0.0     2       1000    30      30      30      20      20      3000    3000    2000    2000    1000    4   60  7  -25  -   -
  221.  
  222. #-- Rituals
  223.  
  224. HeartOfStone            DGRP_Thau_Rituals               heartOfStoneIcon        DisciplineHeartOfStone          actionWhoosh_11.WAV             0x01    2       0.0     9999.0  0.0     0       250     5       5       5       5       5       1000    1000    1000    1000    1000    4   25  5   25  -   -
  225. PrisonOfIce             DGRP_Thau_Rituals               prisonOfIceIcon         DisciplinePrisonOfIce           disciplineCast_electricWhip.WAV 0x28    10      0.0      200.0  0.0     0       500     15      15      15      10      10      3000    3000    2000    2000    1000    4   35  5   35  -   -
  226. CallLightning           DGRP_Thau_Rituals               regoTempestasIcon       DisciplineCallLightning         discipline_callLightning_02.WAV 0x28    10      0.0     1000.0  0.0     0       750     25      25      25      20      20      3000    3000    2000    2000    1000    4   50  5   50  -   -
  227. IgnoreFlame             DGRP_Thau_Rituals               ignoreTheSearingFlameIcon DisciplineIgnoreFlame         actionWhoosh_04.WAV             0x01    2       0.0     9999.0  0.0     2       1000    10      10      10      5       5       1000    1000    1000    1000    1000    4   60  5   60  -   -
  228. SummonElemental         DGRP_Thau_Rituals               summonElementalIcon     DisciplineSummonElemental       disciplineCast_whisperCast.WAV  0x10001 3       0.0     9999.0  0.0     1       1500    25      25      25      20      20      3000    3000    2000    2000    1000    4   70  5   70  -   -
  229.  
  230.  
  231. # FAITH                 -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  232.  
  233. Heal                    DGRP_Faith                      healIcon                DisciplineHeal                  death_holy.WAV                  0x01    1       0.0     9999.0  0.0     0       250     5       5       5       5       5       2000    2000    2000    1000    1000    10  25  -   -   -   -
  234. Prayer                  DGRP_Faith                      prayerIcon              DisciplinePrayer                death_holy.WAV                  0x28    10      0.0     1500.0  0.0     2       500     10      10      5       5       5       1000    1000    1000    1000    1000    10  35  -   -   -   -
  235. TrueFaith               DGRP_Faith                      trueFaithIcon           DisciplineTrueFaith             death_holy.WAV                  0x01    4       0.0     9999.0  0.0     0       750     20      20      15      15      15      2000    2000    2000    1000    1000    10  50  -   -   -   -
  236.  
  237.  
  238. # NUMINA                -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  239.  
  240. Invisibility            DGRP_Numina                     InvisibilityIcon        DisciplineInvisibility          actionWhoosh_08.WAV             0x01    4       0.0     9999.0  0.0     0       250     10      10      10      5       5       1000    1000    1000    1000    1000    3   25  4   25  -   -
  241. Flash                   DGRP_Numina                     FlashIcon               DisciplineFlash                 actionWhoosh_01.WAV             0x01    10      0.0     9999.0  0.0     1       500     15      15      15      10      10      2000    2000    2000    1000    1000    3   35  4   35  -   -
  242. TrueSight               DGRP_Numina                     TrueSightIcon           DisciplineTrueSight             actionWhoosh_10.WAV             0x01    5       0.0     9999.0  0.0     0       750     20      20      20      10      10      1000    1000    1000    1000    1000    3   50  4   50  -   -
  243.  
  244.  
  245. # OBTENEBRATION         -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  246.  
  247. DarkHunter              DGRP_Obtenebration              darkHunterIcon          DisciplineDarkHunter            darkHunter_idle_01.WAV          0x10001 3       0.0     9999.0  0.0     1       250     30      30      30      20      20      2000    2000    2000    1000    1000    -   -   -   -   -   -
  248.  
  249.  
  250. # SERPENTIS             -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  251.  
  252. EyesOfTheSerpent        DGRP_Serpentis                  eyesOfTheSerpentIcon    DisciplineEyesOfTheSerpent      viper_idle.WAV                  0x08    11      0.0     1000.0  0.0     0       250     5       5       5       5       5       1000    1000    1000    1000    1000    -   -   -   -   -   -
  253. TongueOfTheAsp          DGRP_Serpentis                  tongueOfTheAspIcon      DisciplineTongueOfTheAsp        disciplineCast_engulf.WAV       0x28    10      0.0      550.0  0.0     1       750     20      20      20      15      15      2000    2000    2000    1000    1000    -   -   -   -   -   -
  254. SkinOfTheAdder          DGRP_Serpentis                  skinOfTheAdderIcon      DisciplineSkinOfTheAdder        viper_idle.WAV                  0x10001 2       0.0     9999.0  0.0     0       750     20      20      20      10      10      1000    1000    1000    1000    1000    -   -   -   -   -   -
  255. HatchTheViper           DGRP_Serpentis                  hatchTheViperIcon       DisciplineHatchTheViper         regurgitateSnake_02.WAV         0x10001 3       0.0     9999.0  0.0     3       500     30      30      30      20      20      3000    3000    2000    2000    1000    -   -   -   -   -   -
  256.  
  257.  
  258. # TALENTS               -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------        
  259.  
  260. Alertness               DGRP_Talents                    auraPerceptionIcon      DisciplineAlertness             ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  261. Athletics               DGRP_Talents                    auraPerceptionIcon      DisciplineAthletics             ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  262. Empathy                 DGRP_Talents                    auraPerceptionIcon      DisciplineEmpathy               ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  263. Expression              DGRP_Talents                    auraPerceptionIcon      DisciplineExpression            ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  264. Intimidation            DGRP_Talents                    auraPerceptionIcon      DisciplineIntimidation          ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  265. Leadership              DGRP_Talents                    auraPerceptionIcon      DisciplineLeadership            ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  266. Streetwise              DGRP_Talents                    auraPerceptionIcon      DisciplineStreetwise            ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  267. Subterfuge              DGRP_Talents                    auraPerceptionIcon      DisciplineSubterfuge            ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  268.  
  269.  
  270. # SKILLS                -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------        
  271.  
  272. AnimalKen               DGRP_Skills                     auraPerceptionIcon      DisciplineAnimalken             ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  273. Crafts                  DGRP_Skills                     auraPerceptionIcon      DisciplineCrafts                ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  274. Drive                   DGRP_Skills                     auraPerceptionIcon      DisciplineDrive                 ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  275. Etiquette               DGRP_Skills                     auraPerceptionIcon      DisciplineEtiquette             ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  276. Performance             DGRP_Skills                     auraPerceptionIcon      DisciplinePerformance           ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  277. Security                DGRP_Skills                     auraPerceptionIcon      DisciplineSecurity              ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  278. Stealth                 DGRP_Skills                     auraPerceptionIcon      DisciplineStealth               ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  279. Survival                DGRP_Skills                     auraPerceptionIcon      DisciplineSurvival              ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  280.  
  281.  
  282. # KNOWLEDGES            -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------        
  283.  
  284. Academics               DGRP_Knowledges                 auraPerceptionIcon      DisciplineAcademics             ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  285. Computer                DGRP_Knowledges                 auraPerceptionIcon      DisciplineComputer              cpu_typing_short.WAV            0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  286. Finance                 DGRP_Knowledges                 auraPerceptionIcon      DisciplineFinance               coin_handful_drop.WAV           0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  287. Investigation           DGRP_Knowledges                 auraPerceptionIcon      DisciplineInvestigation         ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  288. Law                     DGRP_Knowledges                 auraPerceptionIcon      DisciplineLaw                   ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  289. Linguistics             DGRP_Knowledges                 auraPerceptionIcon      DisciplineLinguistics           ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  290. Medicine                DGRP_Knowledges                 auraPerceptionIcon      DisciplineMedicine              gib_splat_02.WAV                0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  291. Occult                  DGRP_Knowledges                 auraPerceptionIcon      DisciplineOccult                ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  292. Politics                DGRP_Knowledges                 auraPerceptionIcon      DisciplinePolitics              ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  293. Science                 DGRP_Knowledges                 auraPerceptionIcon      DisciplineScience               ui_MPMessage2.WAV               0x01    0       0.0      200.0  0.0     0      1000     0       0       0       0       0       1000    1000    1000    1000    1000    -   -   -   -   -   -
  294.  
  295.  
  296. # name                  group                           icon                    script                          sound                           flags   type    minDist maxDist fData   cast    xpc     c0      c1      c2      c3      c4      r0      r1      r2      r3      r4      cs0 cv0 cs1 cv1 cs2 cv2
  297.