00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef MUTATION_DATA_H
00013 #define MUTATION_DATA_H
00014
00015 { MUT_TOUGH_SKIN, 0, 3, false, true,
00016 "tough skin",
00017
00018 {"You have tough skin (AC +1).",
00019 "You have very tough skin (AC +2).",
00020 "You have extremely tough skin (AC +3)."},
00021
00022 {"Your skin toughens.",
00023 "Your skin toughens.",
00024 "Your skin toughens."},
00025
00026 {"Your skin feels delicate.",
00027 "Your skin feels delicate.",
00028 "Your skin feels delicate."},
00029
00030 "tough skin"
00031 },
00032
00033 { MUT_STRONG, 8, 14, false, true,
00034 NULL,
00035
00036 {"Your muscles are strong (Str +", "", ""},
00037 {"", "", ""},
00038 {"", "", ""},
00039
00040 "strong"
00041 },
00042 { MUT_CLEVER, 8, 14, false, true,
00043 NULL,
00044
00045 {"Your mind is acute (Int +", "", ""},
00046 {"", "", ""},
00047 {"", "", ""},
00048
00049 "clever"
00050 },
00051
00052 { MUT_AGILE, 8, 14, false, true,
00053 NULL,
00054
00055 {"You are agile (Dex +", "", ""},
00056 {"", "", ""},
00057 {"", "", ""},
00058
00059 "agile"
00060 },
00061
00062 { MUT_POISON_RESISTANCE, 4, 1, false, false,
00063 "poison resistance",
00064
00065 {"Your system is resistant to poisons.", "", ""},
00066 {"You feel healthy.", "", ""},
00067 {"You feel a little less healthy.", "", ""},
00068
00069 "poison resistance"
00070 },
00071 { MUT_CARNIVOROUS, 5, 3, false, false,
00072 "carnivore",
00073
00074 {"Your digestive system is specialised to digest meat.",
00075 "Your digestive system is highly specialised to digest meat.",
00076 "You are carnivorous and can eat meat at any time."},
00077
00078 {"You hunger for flesh.",
00079 "You hunger for flesh.",
00080 "You hunger for flesh."},
00081
00082 {"You feel able to eat a more balanced diet.",
00083 "You feel able to eat a more balanced diet.",
00084 "You feel able to eat a more balanced diet."},
00085
00086 "carnivorous"
00087 },
00088 { MUT_HERBIVOROUS, 5, 3, true, false,
00089 "herbivore",
00090
00091 {"You digest meat inefficiently.",
00092 "You digest meat very inefficiently.",
00093 "You are a herbivore."},
00094
00095 {"You hunger for vegetation.",
00096 "You hunger for vegetation.",
00097 "You hunger for vegetation."},
00098
00099 {"You feel able to eat a more balanced diet.",
00100 "You feel able to eat a more balanced diet.",
00101 "You feel able to eat a more balanced diet."},
00102
00103 "herbivorous"
00104 },
00105 { MUT_HEAT_RESISTANCE, 4, 3, false, false,
00106 "fire resistance",
00107
00108 {"Your flesh is heat resistant.",
00109 "Your flesh is very heat resistant.",
00110 "Your flesh is almost immune to the effects of heat."},
00111
00112 {"You feel a sudden chill.",
00113 "You feel a sudden chill.",
00114 "You feel a sudden chill."},
00115
00116 {"You feel hot for a moment.",
00117 "You feel hot for a moment.",
00118 "You feel hot for a moment."},
00119
00120 "heat resistance"
00121 },
00122 { MUT_COLD_RESISTANCE, 4, 3, false, false,
00123 "cold resistance",
00124
00125 {"Your flesh is cold resistant.",
00126 "Your flesh is very cold resistant.",
00127 "Your flesh is almost immune to the effects of cold."},
00128
00129 {"You feel hot for a moment.",
00130 "You feel hot for a moment.",
00131 "You feel hot for a moment."},
00132
00133 {"You feel a sudden chill.",
00134 "You feel a sudden chill.",
00135 "You feel a sudden chill."},
00136
00137 "cold resistance"
00138 },
00139 { MUT_DEMONIC_GUARDIAN, 0, 3, false, false,
00140 "demonic guardian",
00141
00142 {"A weak demonic guardian rushes to your aid.",
00143 "A demonic guardian rushes to your aid.",
00144 "A powerful demonic guardian rushes to your aid."},
00145
00146 {"You feel the presence of a demonic guardian.",
00147 "Your guardian grows in power.",
00148 "Your guardian grows in power."},
00149
00150 {"Your demonic guardian is gone.",
00151 "Your demonic guardian is weakened.",
00152 "Your demonic guardian is weakened."},
00153
00154 "demonic guardian"
00155 },
00156 { MUT_SHOCK_RESISTANCE, 2, 1, false, false,
00157 "electricity resistance",
00158
00159 {"You are resistant to electric shocks.", "", ""},
00160 {"You feel insulated.", "", ""},
00161 {"You feel conductive.", "", ""},
00162
00163 "shock resistance"
00164 },
00165 { MUT_REGENERATION, 3, 3, false, false,
00166 "regeneration",
00167
00168 {"Your natural rate of healing is unusually fast.",
00169 "You heal very quickly.",
00170 "You regenerate."},
00171
00172 {"You begin to heal more quickly.",
00173 "You begin to heal more quickly.",
00174 "You begin to regenerate."},
00175
00176 {"Your rate of healing slows.",
00177 "Your rate of healing slows.",
00178 "Your rate of healing slows."},
00179
00180 "regeneration"
00181 },
00182 { MUT_SLOW_HEALING, 3, 3, true, false,
00183 "slow healing",
00184
00185 {"You heal slowly.",
00186 "You heal very slowly.",
00187 "You do not heal naturally."},
00188
00189 {"You begin to heal more slowly.",
00190 "You begin to heal more slowly.",
00191 "You stop healing."},
00192
00193 {"Your rate of healing increases.",
00194 "Your rate of healing increases.",
00195 "Your rate of healing increases."},
00196
00197 "slow healing"
00198 },
00199 { MUT_FAST_METABOLISM, 10, 3, true, false,
00200 "fast metabolism",
00201
00202 {"You have a fast metabolism.",
00203 "You have a very fast metabolism.",
00204 "Your metabolism is lightning-fast."},
00205
00206 {"You feel a little hungry.",
00207 "You feel a little hungry.",
00208 "You feel a little hungry."},
00209
00210 {"Your metabolism slows.",
00211 "Your metabolism slows.",
00212 "Your metabolism slows."},
00213
00214 "fast metabolism"
00215 },
00216 { MUT_SLOW_METABOLISM, 7, 3, false, false,
00217 "slow metabolism",
00218
00219 {"You have a slow metabolism.",
00220 "You have a slow metabolism.",
00221 "You need consume almost no food."},
00222
00223 {"Your metabolism slows.",
00224 "Your metabolism slows.",
00225 "Your metabolism slows."},
00226
00227 {"You feel a little hungry.",
00228 "You feel a little hungry.",
00229 "You feel a little hungry."},
00230
00231 "slow metabolism"
00232 },
00233
00234 { MUT_WEAK, 10, 14, true, true,
00235 NULL,
00236 {"You are weak (Str -", "", ""},
00237 {"", "", ""},
00238 {"", "", ""},
00239 "weak"
00240 },
00241 { MUT_DOPEY, 10, 14, true, true,
00242 NULL,
00243 {"You are dopey (Int -", "", ""},
00244 {"", "", ""},
00245 {"", "", ""},
00246 "dopey",
00247 },
00248 { MUT_CLUMSY, 10, 14, true, true,
00249 NULL,
00250 {"You are clumsy (Dex -", "", ""},
00251 {"", "", ""},
00252 {"", "", ""},
00253 "clumsy"
00254 },
00255 { MUT_TELEPORT_CONTROL, 2, 1, false, false,
00256 "teleport control",
00257
00258 {"You can control translocations.", "", ""},
00259 {"You feel controlled.", "", ""},
00260 {"You feel random.", "", ""},
00261
00262 "teleport control"
00263 },
00264
00265 { MUT_TELEPORT, 3, 3, true, false,
00266 "teleportitis",
00267
00268 {"Space occasionally distorts in your vicinity.",
00269 "Space sometimes distorts in your vicinity.",
00270 "Space frequently distorts in your vicinity."},
00271
00272 {"You feel weirdly uncertain.",
00273 "You feel even more weirdly uncertain.",
00274 "You feel even more weirdly uncertain."},
00275
00276 {"You feel stable.",
00277 "You feel stable.",
00278 "You feel stable."},
00279
00280 "teleport"
00281 },
00282 { MUT_MAGIC_RESISTANCE, 5, 3, false, false,
00283 "magic resistance",
00284
00285 {"You are resistant to hostile enchantments.",
00286 "You are highly resistant to hostile enchantments.",
00287 "You are extremely resistant to the effects of hostile enchantments."},
00288
00289 {"You feel resistant to hostile enchantments.",
00290 "You feel more resistant to hostile enchantments.",
00291 "You feel almost impervious to the effects of hostile enchantments."},
00292
00293 {"You feel less resistant to hostile enchantments.",
00294 "You feel less resistant to hostile enchantments.",
00295 "You feel vulnerable to magic hostile enchantments."},
00296
00297 "magic resistance"
00298 },
00299
00300 { MUT_FAST, 1, 3, false, false,
00301 "speed",
00302
00303 {"You cover ground quickly.",
00304 "You cover ground very quickly.",
00305 "You cover ground extremely quickly."},
00306
00307 {"You feel quick.",
00308 "You feel quick.",
00309 "You feel quick."},
00310
00311 {"You feel sluggish.",
00312 "You feel sluggish.",
00313 "You feel sluggish."},
00314
00315 "fast"
00316 },
00317
00318 { MUT_SLOW, 3, 3, true, false,
00319 "slowness",
00320
00321 {"You cover ground slowly.",
00322 "You cover ground very slowly.",
00323 "You cover ground extremely slowly."},
00324
00325 {"You feel sluggish.",
00326 "You feel sluggish.",
00327 "You feel sluggish."},
00328
00329 {"You feel quick.",
00330 "You feel quick.",
00331 "You feel quick."},
00332
00333 "slow"
00334 },
00335
00336 { MUT_ACUTE_VISION, 2, 1, false, false,
00337 "see invisible",
00338
00339 {"You have supernaturally acute eyesight.", "", ""},
00340
00341 {"Your vision sharpens.",
00342 "Your vision sharpens.",
00343 "Your vision sharpens."},
00344
00345 {"Your vision seems duller.",
00346 "Your vision seems duller.",
00347 "Your vision seems duller."},
00348
00349 "acute vision"
00350 },
00351
00352 { MUT_DEFORMED, 8, 3, true, true,
00353 "deformed body",
00354
00355 {"Armour fits poorly on your unusually shaped body.",
00356 "Armour fits poorly on your deformed body.",
00357 "Armour fits poorly on your badly deformed body."},
00358
00359 {"Your body twists unusually.",
00360 "Your body twists and deforms.",
00361 "Your body twists and deforms."},
00362
00363 {"Your body's shape seems more normal.",
00364 "Your body's shape seems slightly more normal.",
00365 "Your body's shape seems slightly more normal."},
00366
00367 "deformed"
00368 },
00369 { MUT_TELEPORT_AT_WILL, 0, 3, false, false,
00370 "teleport at will",
00371
00372 {"You can teleport at will.",
00373 "You are good at teleporting at will.",
00374 "You can teleport instantly at will."},
00375
00376 {"You feel jumpy.",
00377 "You feel more jumpy.",
00378 "You feel even more jumpy."},
00379
00380 {"You feel a little less jumpy.",
00381 "You feel less jumpy.",
00382 "You feel less jumpy."},
00383
00384 "teleport at will"
00385 },
00386 { MUT_SPIT_POISON, 8, 3, false, false,
00387 "spit poison",
00388
00389 {"You can spit poison.",
00390 "You can spit moderately strong poison.",
00391 "You can spit strong poison."},
00392
00393 {"There is a nasty taste in your mouth for a moment.",
00394 "There is a nasty taste in your mouth for a moment.",
00395 "There is a nasty taste in your mouth for a moment."},
00396
00397 {"You feel an ache in your throat.",
00398 "You feel an ache in your throat.",
00399 "You feel an ache in your throat."},
00400
00401 "spit poison"
00402 },
00403
00404 { MUT_BREATHE_FLAMES, 4, 3, false, false,
00405 "breathe flames",
00406
00407 {"You can breathe flames.",
00408 "You can breathe fire.",
00409 "You can breathe blasts of fire."},
00410
00411 {"Your throat feels hot.",
00412 "Your throat feels hot.",
00413 "Your throat feels hot."},
00414
00415 {"A chill runs up and down your throat.",
00416 "A chill runs up and down your throat.",
00417 "A chill runs up and down your throat."},
00418
00419 "breathe flames"
00420 },
00421
00422 { MUT_BLINK, 3, 3, false, false,
00423 "blink",
00424
00425 {"You can translocate small distances at will.",
00426 "You are good at translocating small distances at will.",
00427 "You can translocate small distances instantaneously."},
00428
00429 {"You feel jittery.",
00430 "You feel more jittery.",
00431 "You feel even more jittery."},
00432
00433 {"You feel a little less jittery.",
00434 "You feel less jittery.",
00435 "You feel less jittery."},
00436
00437 "blink"
00438 },
00439 { MUT_STRONG_STIFF, 10, 3, false, true,
00440 NULL,
00441
00442 {"Your muscles are strong, but stiff (Str +1, Dex -1).",
00443 "Your muscles are very strong, but stiff (Str +2, Dex -2).",
00444 "Your muscles are extremely strong, but stiff (Str +3, Dex -3)."},
00445
00446 {"Your muscles feel sore.",
00447 "Your muscles feel sore.",
00448 "Your muscles feel sore."},
00449
00450 {"Your muscles feel loose.",
00451 "Your muscles feel loose.",
00452 "Your muscles feel loose."},
00453
00454 "strong stiff"
00455 },
00456
00457 { MUT_FLEXIBLE_WEAK, 10, 3, false, true,
00458 NULL,
00459
00460 {"Your muscles are flexible, but weak (Str -1, Dex +1).",
00461 "Your muscles are very flexible, but weak (Str -2, Dex +2).",
00462 "Your muscles are extremely flexible, but weak (Str -3, Dex +3)."},
00463
00464 {"Your muscles feel loose.",
00465 "Your muscles feel loose.",
00466 "Your muscles feel loose."},
00467
00468 {"Your muscles feel sore.",
00469 "Your muscles feel sore.",
00470 "Your muscles feel sore."},
00471
00472 "flexible weak"
00473 },
00474
00475 { MUT_SCREAM, 6, 3, true, false,
00476 "screaming",
00477
00478 {"You occasionally shout uncontrollably.",
00479 "You sometimes yell uncontrollably.",
00480 "You frequently scream uncontrollably."},
00481
00482 {"You feel the urge to shout.",
00483 "You feel a strong urge to yell.",
00484 "You feel a strong urge to scream."},
00485
00486 {"Your urge to shout disappears.",
00487 "Your urge to yell lessens.",
00488 "Your urge to scream lessens."},
00489
00490 "scream"
00491 },
00492
00493 { MUT_CLARITY, 6, 1, false, false,
00494 "clarity",
00495
00496 {"You possess an exceptional clarity of mind.", "", ""},
00497 {"Your thoughts seem clearer.", "", ""},
00498 {"Your thinking seems confused.", "", ""},
00499
00500 "clarity"
00501 },
00502
00503 { MUT_BERSERK, 7, 3, true, false,
00504 "berserk",
00505
00506 {"You tend to lose your temper in combat.",
00507 "You often lose your temper in combat.",
00508 "You have an uncontrollable temper."},
00509
00510 {"You feel a little pissed off.",
00511 "You feel angry.",
00512 "You feel extremely angry at everything!"},
00513
00514 {"You feel a little more calm.",
00515 "You feel a little less angry.",
00516 "You feel a little less angry."},
00517
00518 "berserk"
00519 },
00520
00521 { MUT_DETERIORATION, 10, 3, true, false,
00522 "deterioration",
00523
00524 {"Your body is slowly deteriorating.",
00525 "Your body is deteriorating.",
00526 "Your body is rapidly deteriorating."},
00527
00528 {"You feel yourself wasting away.",
00529 "You feel yourself wasting away.",
00530 "You feel your body start to fall apart."},
00531
00532 {"You feel healthier.",
00533 "You feel a little healthier.",
00534 "You feel a little healthier."},
00535
00536 "deterioration"
00537 },
00538
00539 { MUT_BLURRY_VISION, 10, 3, true, false,
00540 "blurry vision",
00541
00542 {"Your vision is a little blurry.",
00543 "Your vision is quite blurry.",
00544 "Your vision is extremely blurry."},
00545
00546 {"Your vision blurs.",
00547 "Your vision blurs.",
00548 "Your vision blurs."},
00549
00550 {"Your vision sharpens.",
00551 "Your vision sharpens a little.",
00552 "Your vision sharpens a little."},
00553
00554 "blurry vision"
00555 },
00556
00557 { MUT_MUTATION_RESISTANCE, 4, 3, false, false,
00558 "mutation resistance",
00559
00560 {"You are somewhat resistant to further mutation.",
00561 "You are somewhat resistant to both further mutation and mutation removal.",
00562 "Your current mutations are irrevocably fixed, and you can mutate no more."},
00563
00564 {"You feel genetically stable.",
00565 "You feel genetically stable.",
00566 "You feel genetically immutable."},
00567
00568 {"You feel genetically unstable.",
00569 "You feel genetically unstable.",
00570 "You feel genetically unstable."},
00571
00572 "mutation resistance"
00573 },
00574
00575 { MUT_FRAIL, 10, 3, true, true,
00576 NULL,
00577
00578 {"You are frail (-10% HP).",
00579 "You are very frail (-20% HP).",
00580 "You are extremely frail (-30% HP)."},
00581
00582 {"You feel frail.",
00583 "You feel frail.",
00584 "You feel frail."},
00585
00586 {"You feel robust.",
00587 "You feel robust.",
00588 "You feel robust."},
00589
00590 "frail"
00591 },
00592
00593 { MUT_ROBUST, 5, 3, false, true,
00594 NULL,
00595
00596 {"You are robust (+10% HP).",
00597 "You are very robust (+20% HP).",
00598 "You are extremely robust (+30% HP)."},
00599
00600 {"You feel robust.",
00601 "You feel robust.",
00602 "You feel robust."},
00603
00604 {"You feel frail.",
00605 "You feel frail.",
00606 "You feel frail."},
00607
00608 "robust"
00609 },
00610
00611 { MUT_UNBREATHING, 0, 1, false, false,
00612 "unbreathing",
00613
00614 {"You do not need to breathe.", "", ""},
00615 {"You feel breathless.", "", ""},
00616 {"", "", ""},
00617
00618 "unbreathing"
00619 },
00620
00621 { MUT_TORMENT_RESISTANCE, 0, 1, false, false,
00622 "torment resistance",
00623
00624 {"You are immune to unholy pain and torment.", "", ""},
00625 {"You feel a strange anaesthesia.", "", ""},
00626 {"", "", ""},
00627
00628 "torment resistance"
00629 },
00630
00631 { MUT_NEGATIVE_ENERGY_RESISTANCE, 0, 3, false, false,
00632 "life protection",
00633
00634 {"You resist negative energy.",
00635 "You are quite resistant to negative energy.",
00636 "You are immune to negative energy."},
00637
00638 {"You feel negative.",
00639 "You feel negative.",
00640 "You feel negative."},
00641
00642 {"", "", ""},
00643
00644 "negative energy resistance"
00645 },
00646
00647 { MUT_HURL_HELLFIRE, 0, 1, false, false,
00648 "hurl hellfire",
00649
00650 {"You can hurl blasts of hellfire.", "", ""},
00651 {"You smell fire and brimstone.", "", ""},
00652 {"", "", ""},
00653
00654 "hurl hellfire"
00655 },
00656
00657 { MUT_THROW_FLAMES, 0, 1, false, false,
00658 "throw flames of Gehenna",
00659
00660 {"You can throw forth the flames of Gehenna.", "", ""},
00661 {"You smell the fires of Gehenna.", "", ""},
00662 {"", "", ""},
00663
00664 "throw flames"
00665 },
00666
00667 { MUT_THROW_FROST, 0, 1, false, false,
00668 "throw frost of Cocytus",
00669
00670 {"You can throw forth the frost of Cocytus.", "", ""},
00671 {"You feel the icy cold of Cocytus chill your soul.", "", ""},
00672 {"", "", ""},
00673
00674 "throw frost"
00675 },
00676
00677
00678 { MUT_HORNS, 7, 3, false, true,
00679 "horns",
00680
00681 {"You have a pair of small horns on your head.",
00682 "You have a pair of horns on your head.",
00683 "You have a pair of large horns on your head."},
00684
00685 {"A pair of horns grows on your head!",
00686 "The horns on your head grow some more.",
00687 "The horns on your head grow some more."},
00688
00689 {"The horns on your head shrink away.",
00690 "The horns on your head shrink a bit.",
00691 "The horns on your head shrink a bit."},
00692
00693 "horns"
00694 },
00695 { MUT_BEAK, 1, 1, false, true,
00696 "beak",
00697
00698 {"You have a beak for a mouth.", "", ""},
00699 {"Your mouth lengthens and hardens into a beak!", "", ""},
00700 {"Your beak shortens and softens into a mouth.", "", ""},
00701
00702 "beak"
00703 },
00704
00705 { MUT_CLAWS, 2, 3, false, true,
00706 "claws",
00707
00708 {"You have sharp fingernails.",
00709 "You have very sharp fingernails.",
00710 "You have claws for hands."},
00711
00712 {"Your fingernails lengthen.",
00713 "Your fingernails sharpen.",
00714 "Your hands twist into claws."},
00715
00716 {"Your fingernails shrink to normal size.",
00717 "Your fingernails look duller.",
00718 "Your hands feel fleshier."},
00719
00720 "claws"
00721 },
00722
00723 { MUT_FANGS, 1, 3, false, true,
00724 "fangs",
00725
00726 {"You have very sharp teeth.",
00727 "You have extremely sharp teeth.",
00728 "You have razor-sharp teeth."},
00729
00730 {"Your teeth lengthen and sharpen.",
00731 "Your teeth lengthen and sharpen some more.",
00732 "Your teeth are very long and razor-sharp."},
00733
00734 {"Your teeth shrink to normal size.",
00735 "Your teeth shrink and become duller.",
00736 "Your teeth shrink and become duller."},
00737
00738 "fangs"
00739 },
00740
00741 { MUT_HOOVES, 5, 3, false, true,
00742 "hooves",
00743
00744 {"You have large cloven feet.",
00745 "You have hoof-like feet.",
00746 "You have hooves in place of feet."},
00747
00748 {"Your feet thicken and deform.",
00749 "Your feet thicken and deform.",
00750 "Your feet have mutated into hooves."},
00751
00752 {"Your hooves expand and flesh out into feet!",
00753 "Your hooves look more like feet.",
00754 "Your hooves look more like feet."},
00755
00756 "hooves"
00757 },
00758
00759 { MUT_ANTENNAE, 4, 3, false, true,
00760 "antennae",
00761
00762 {"You have a pair of small antennae on your head.",
00763 "You have a pair of antennae on your head.",
00764 "You have a pair of large antennae on your head (SInv)."},
00765
00766 {"A pair of antennae grows on your head!",
00767 "The antennae on your head grow some more.",
00768 "The antennae on your head grow some more."},
00769
00770 {"The antennae on your head shrink away.",
00771 "The antennae on your head shrink a bit.",
00772 "The antennae on your head shrink a bit."},
00773
00774 "antennae"
00775 },
00776
00777 { MUT_TALONS, 5, 3, false, true,
00778 "talons",
00779
00780 {"You have sharp toenails.",
00781 "You have razor-sharp toenails.",
00782 "You have claws for feet."},
00783
00784 {"Your toenails lengthen and sharpen.",
00785 "Your toenails lengthen and sharpen.",
00786 "Your feet stretch into talons."},
00787
00788 {"Your talons dull and shrink into feet.",
00789 "Your talons look more like feet.",
00790 "Your talons look more like feet."},
00791
00792 "talons"
00793 },
00794
00795
00796 { MUT_BREATHE_POISON, 0, 1, false, false,
00797 "breathe poison",
00798
00799 {"You can exhale a cloud of poison.", "", ""},
00800 {"You taste something nasty.", "", ""},
00801 {"Your breath is less nasty.", "", ""},
00802
00803 "breathe poison"
00804 },
00805
00806
00807 { MUT_STINGER, 0, 3, false, true,
00808 "stinger",
00809
00810 {"Your tail ends in a poisonous barb.",
00811 "Your tail ends in a sharp poisonous barb.",
00812 "Your tail ends in a wickedly sharp and poisonous barb."},
00813
00814 {"A poisonous barb forms on the end of your tail.",
00815 "The barb on your tail looks sharper.",
00816 "The barb on your tail looks very sharp."},
00817
00818 {"The barb on your tail disappears.",
00819 "The barb on your tail seems less sharp.",
00820 "The barb on your tail seems less sharp."},
00821
00822 "stinger"
00823 },
00824
00825
00826 { MUT_BIG_WINGS, 0, 1, false, true,
00827 "large and strong wings",
00828
00829 {"Your wings are large and strong.", "", ""},
00830 {"Your wings grow larger and stronger.", "", ""},
00831 {"Your wings shrivel and weaken.", "", ""},
00832
00833 "big wings"
00834 },
00835
00836
00837 { MUT_SAPROVOROUS, 0, 3, false, false,
00838 "saprovore",
00839
00840 {"You can tolerate rotten meat.",
00841 "You can eat rotten meat.",
00842 "You thrive on rotten meat."},
00843 {"", "", ""},
00844 {"", "", ""},
00845
00846 "saprovorous"
00847 },
00848
00849 { MUT_GOURMAND, 0, 1, false, false,
00850 "gourmand",
00851
00852 {"You like to eat raw meat.", "", ""},
00853 {"", "", ""},
00854 {"", "", ""},
00855
00856 "gourmand"
00857 },
00858
00859 { MUT_SHAGGY_FUR, 2, 3, false, true,
00860 NULL,
00861
00862 {"You are covered in fur (AC +1).",
00863 "You are covered in thick fur (AC +2).",
00864 "Your thick and shaggy fur keeps you warm (AC +3, rC+)."},
00865
00866 {"Fur sprouts all over your body.",
00867 "Your fur grows into a thick mane.",
00868 "Your thick fur grows shaggy and warm."},
00869
00870 {"You shed all your fur.",
00871 "Your thick fur recedes somewhat.",
00872 "Your shaggy fur recedes somewhat."},
00873
00874 "shaggy fur"
00875 },
00876
00877 { MUT_HIGH_MAGIC, 2, 3, false, false,
00878 NULL,
00879
00880 {"You have an increased reservoir of magic (+10% MP).",
00881 "You have a considerably increased reservoir of magic (+20% MP).",
00882 "You have a greatly increased reservoir of magic (+30% MP)."},
00883
00884 {"You feel more energetic.",
00885 "You feel more energetic.",
00886 "You feel more energetic."},
00887
00888 {"You feel less energetic.",
00889 "You feel less energetic.",
00890 "You feel less energetic."},
00891
00892 "high mp"
00893 },
00894
00895 { MUT_LOW_MAGIC, 9, 3, true, false,
00896 NULL,
00897
00898 {"Your magical capacity is low (-10% MP).",
00899 "Your magical capacity is very low (-20% MP).",
00900 "Your magical capacity is extremely low (-30% MP)."},
00901
00902 {"You feel less energetic.",
00903 "You feel less energetic.",
00904 "You feel less energetic."},
00905
00906 {"You feel more energetic.",
00907 "You feel more energetic.",
00908 "You feel more energetic."},
00909
00910 "low mp"
00911 },
00912
00913 { MUT_STOCHASTIC_TORMENT_RESISTANCE, 0, 3, false, false,
00914 NULL,
00915
00916 {"You are somewhat able to resist unholy torments (1 in 5 success).",
00917 "You are decently able to resist unholy torments (2 in 5 success).",
00918 "You are rather able to resist unholy torments (3 in 5 success)."},
00919
00920 {"You feel a slight anaesthesia.",
00921 "You feel a slight anaesthesia.",
00922 "You feel a strange anaesthesia."},
00923
00924 {"","",""},
00925
00926 "stochastic torment resistance"
00927 },
00928
00929 { MUT_PASSIVE_MAPPING, 3, 3, false, false,
00930 "sense surroundings",
00931
00932 {"You passively map a small area around you.",
00933 "You passively map the area around you.",
00934 "You passively map a large area around you."},
00935
00936 {"You feel a strange attunement to the structure of the dungeons.",
00937 "Your attunement to dungeon structure grows.",
00938 "Your attunement to dungeon structure grows further."},
00939
00940 {"You feel slightly disoriented.",
00941 "You feel slightly disoriented.",
00942 "You feel slightly disoriented."},
00943
00944 "passive mapping"
00945 },
00946
00947 { MUT_ICEMAIL, 0, 1, false, false,
00948 NULL,
00949
00950 {"A meltable icy envelope protects you from harm (AC +", "", ""},
00951 {"An icy envelope takes form around you.", "", ""},
00952 {"", "", ""},
00953
00954 "icemail"
00955 },
00956
00957 { MUT_CONSERVE_SCROLLS, 0, 1, false, false,
00958 "conserve scrolls",
00959
00960 {"You are very good at protecting items from fire.", "", ""},
00961 {"You feel less concerned about heat.", "", ""},
00962 {"", "", ""},
00963
00964 "conserve scrolls",
00965 },
00966
00967 { MUT_CONSERVE_POTIONS, 0, 1, false, false,
00968 "conserve potions",
00969
00970 {"You are very good at protecting items from cold.", "", ""},
00971 {"You feel less concerned about cold.", "", ""},
00972 {"", "", ""},
00973 "conserve potions",
00974 },
00975
00976 { MUT_PASSIVE_FREEZE, 0, 1, false, false,
00977 "passive freeze",
00978
00979 {"A frigid envelope surrounds you and freezes all who hurt you.", "", ""},
00980 {"Your skin feels very cold.", "", ""},
00981 {"", "", ""},
00982
00983 "passive freeze",
00984 },
00985
00986 { MUT_NIGHTSTALKER, 0, 3, false, true,
00987 "nightstalker",
00988
00989 {"You are slightly more attuned to the shadows.",
00990 "You are significantly more attuned to the shadows.",
00991 "You are completely attuned to the shadows."},
00992
00993 {"You slip into the darkness of the dungeon.",
00994 "You slip further into the darkness.",
00995 "You are surrounded by darkness."},
00996
00997 {"Your affinity for the darkness vanishes.",
00998 "Your affinity for the darkness weakens.",
00999 "Your affinity for the darkness weakens."},
01000
01001 "nightstalker"
01002 },
01003
01004 { MUT_SPINY, 0, 3, false, true,
01005 "spiny",
01006
01007 {"You are partially covered in sharp spines.",
01008 "You are mostly covered in sharp spines.",
01009 "You are completely covered in sharp spines."},
01010
01011 {"Sharp spines emerge from parts of your body.",
01012 "Sharp spines emerge from more of your body.",
01013 "Sharp spines emerge from your entire body."},
01014
01015 {"Your sharp spines disappear entirely.",
01016 "Your sharp spines retract somewhat.",
01017 "Your sharp spines retract somewhat."},
01018
01019 "spiny"
01020 },
01021
01022 { MUT_POWERED_BY_DEATH, 0, 3, false, false,
01023 "powered by death",
01024
01025 {"You slowly steal the life force of defeated enemies.",
01026 "You steal the life force of defeated enemies.",
01027 "You quickly steal the life force of defeated enemies."},
01028
01029 {"A wave of death washes over you.",
01030 "The wave of death grows in power.",
01031 "The wave of death grows in power."},
01032
01033 {"Your control of surrounding life forces is gone.",
01034 "Your control of surrounding life forces weakens.",
01035 "Your control of surrounding life forces weakens."},
01036
01037 "pbd"
01038 },
01039
01040
01041 { MUT_GELATINOUS_BODY, 0, 3, false, true,
01042 NULL,
01043
01044 {"Your rubbery body absorbs attacks (AC +1).",
01045 "Your pliable body absorbs attacks (AC +1, EV +1).",
01046 "Your gelatinous body deflects attacks (AC +2, EV +2)."},
01047
01048 {"Your body becomes stretchy.",
01049 "Your body becomes more malleable.",
01050 "Your body becomes viscous."},
01051
01052 {"Your body returns to its normal consistency.",
01053 "Your body becomes less viscous.",
01054 "Your body becomes less viscous."},
01055
01056 "gelatinous body"
01057 },
01058
01059 { MUT_EYEBALLS, 0, 3, false, true,
01060 NULL,
01061
01062 {"Your body is partially covered in golden eyeballs (Acc +3).",
01063 "Your body is mostly covered in golden eyeballs (Acc +5).",
01064 "Your body is completely covered in golden eyeballs (Acc +7, SInv)."},
01065
01066 {"Eyeballs grow over part of your body.",
01067 "Eyeballs cover a large portion of your body.",
01068 "Eyeballs cover you completely."},
01069
01070 {"The eyeballs on your body disappear.",
01071 "The eyeballs on your body recede somewhat.",
01072 "The eyeballs on your body recede somewhat."},
01073
01074 "eyeballs"
01075 },
01076
01077 { MUT_TRANSLUCENT_SKIN, 0, 3, false, true,
01078 "translucent skin",
01079
01080 {"Your skin is partially translucent.",
01081 "Your skin is mostly translucent (Stlth).",
01082 "Your transparent skin reduces the accuracy of your foes (Stlth)."},
01083
01084 {"Your skin becomes partially translucent.",
01085 "Your skin becomes more translucent.",
01086 "Your skin becomes completely transparent."},
01087
01088 {"Your skin returns to its normal opacity.",
01089 "Your skin's translucency fades.",
01090 "Your skin's transparency fades."},
01091
01092 "translucent skin"
01093 },
01094
01095 { MUT_PSEUDOPODS, 0, 3, false, true,
01096 "pseudopods",
01097
01098 {"Armour fits poorly on your pseudopods.",
01099 "Armour fits poorly on your large pseudopods.",
01100 "Armour fits poorly on your massive pseudopods."},
01101
01102 {"Pseudopods emerge from your body.",
01103 "Your pseudopods grow in size.",
01104 "Your pseudopods grow in size."},
01105
01106 {"Your pseudopods retract into your body.",
01107 "Your pseudopods become smaller.",
01108 "Your pseudopods become smaller."},
01109
01110 "pseudopods"
01111 },
01112
01113 { MUT_FOOD_JELLY, 0, 1, false, true,
01114 "spawn jellies when eating",
01115
01116 {"You occasionally spawn a jelly by eating.", "", ""},
01117
01118 {"You feel more connected to the slimes.", "", ""},
01119
01120 {"Your connection to the slimes vanishes.", "", ""},
01121
01122 "jelly spawner"
01123 },
01124
01125 { MUT_ACIDIC_BITE, 0, 1, false, true,
01126 "acidic bite",
01127
01128 {"You have acidic saliva.", "", ""},
01129
01130 {"Acid begins to drip from your mouth.", "", ""},
01131
01132 {"Your mouth feels dry.", "", ""},
01133
01134 "acidic bite"
01135 },
01136
01137
01138 { MUT_DISTORTION_FIELD, 2, 3, false, false,
01139 NULL,
01140
01141 {"You are surrounded by a mild repulsion field (EV +2).",
01142 "You are surrounded by a moderate repulsion field (EV +3).",
01143 "You are surrounded by a strong repulsion field (EV +4, rMsl)."},
01144
01145 {"You begin to radiate repulsive energy.",
01146 "Your repulsive radiation grows stronger.",
01147 "Your repulsive radiation grows stronger."},
01148
01149 {"You feel less repulsive.",
01150 "You feel less repulsive.",
01151 "You feel less repulsive."},
01152
01153 "repulsion field"
01154 },
01155
01156 { MUT_ICY_BLUE_SCALES, 2, 3, false, true,
01157 NULL,
01158
01159 {"You are partially covered in colourless scales (AC +1).",
01160 "You are mostly covered in icy blue scales (AC +2, EV -1).",
01161 "You are completely covered in icy blue scales (AC +3, EV -1, rC+)."},
01162
01163 {"Colourless scales grow over part of your body.",
01164 "Your colourless scales turn blue and spread over more of your body.",
01165 "Icy blue scales cover your body completely."},
01166
01167 {"Your colourless scales disappear.",
01168 "Your icy blue scales recede somewhat.",
01169 "Your icy blue scales recede somewhat."},
01170
01171 "icy blue scales"
01172 },
01173
01174 { MUT_IRIDESCENT_SCALES, 2, 3, false, true,
01175 NULL,
01176
01177 {"You are partially covered in iridescent scales (AC +4).",
01178 "You are mostly covered in iridescent scales (AC +6).",
01179 "You are completely covered in iridescent scales (AC +8)."},
01180
01181 {"Iridescent scales grow over part of your body.",
01182 "Iridescent scales spread over more of your body.",
01183 "Iridescent scales cover you completely."},
01184
01185 {"Your iridescent scales disappear.",
01186 "Your iridescent scales recede somewhat.",
01187 "Your iridescent scales recede somewhat."},
01188
01189 "iridescent scales"
01190 },
01191
01192 { MUT_LARGE_BONE_PLATES, 2, 3, false, true,
01193 NULL,
01194
01195 {"You are partially covered in large bone plates (AC +2, SH +2).",
01196 "You are mostly covered in large bone plates (AC +3, SH +3).",
01197 "You are completely covered in large bone plates (AC +4, SH +4)."},
01198
01199 {"Large bone plates grow over parts of your arms.",
01200 "Large bone plates spread over more of your arms.",
01201 "Large bone plates cover your arms completely."},
01202
01203 {"Your large bone plates disappear.",
01204 "Your large bone plates recede somewhat.",
01205 "Your large bone plates recede somewhat."},
01206
01207 "large bone plates"
01208 },
01209
01210 { MUT_MOLTEN_SCALES, 2, 3, false, true,
01211 NULL,
01212
01213 {"You are partially covered in colourless scales (AC +1).",
01214 "You are mostly covered in molten scales (AC +2, EV -1).",
01215 "You are completely covered in molten scales (AC +3, EV -1, rF+)."},
01216
01217 {"Colourless scales grow over part of your body.",
01218 "Your colourless scales turn molten and spread over more of your body.",
01219 "Molten scales cover your body completely."},
01220
01221 {"Your colourless scales disappear.",
01222 "Your molten scales recede somewhat.",
01223 "Your molten scales recede somewhat."},
01224
01225 "molten scales"
01226 },
01227
01228 { MUT_ROUGH_BLACK_SCALES, 2, 3, false, true,
01229 NULL,
01230
01231 {"You are partially covered in rough black scales (AC +4, Dex -1).",
01232 "You are mostly covered in rough black scales (AC +7, Dex -2).",
01233 "You are completely covered in rough black scales (AC +10, Dex -3)."},
01234
01235 {"Rough black scales grow over part of your body.",
01236 "Rough black scales spread over more of your body.",
01237 "Rough black scales cover you completely."},
01238
01239 {"Your rough black scales disappear.",
01240 "Your rough black scales recede somewhat.",
01241 "Your rough black scales recede somewhat."},
01242
01243 "rough black scales"
01244 },
01245
01246 { MUT_RUGGED_BROWN_SCALES, 2, 3, false, true,
01247 NULL,
01248
01249 {"You are partially covered in rugged brown scales (AC +2, +3% HP).",
01250 "You are mostly covered in rugged brown scales (AC +2, +5% HP).",
01251 "You are completely covered in rugged brown scales (AC +2, +7% HP)."},
01252
01253 {"Rugged brown scales grow over part of your body.",
01254 "Rugged brown scales spread over more of your body.",
01255 "Rugged brown scales cover you completely."},
01256
01257 {"Your rugged brown scales disappear.",
01258 "Your rugged brown scales recede somewhat.",
01259 "Your rugged brown scales recede somewhat."},
01260
01261 "rugged brown scales"
01262 },
01263
01264 { MUT_SLIMY_GREEN_SCALES, 2, 3, false, true,
01265 NULL,
01266
01267 {"You are partially covered in colourless scales (AC +1).",
01268 "You are mostly covered in slimy green scales (AC +2, EV -1).",
01269 "You are completely covered in slimy green scales (AC +3, EV -2, rPois)."},
01270
01271 {"Colourless scales grow over part of your body.",
01272 "Your colourless scales turn green and spread over more of your body.",
01273 "Slimy green scales cover your body completely."},
01274
01275 {"Your colourless scales disappear.",
01276 "Your slimy green scales recede somewhat.",
01277 "Your slimy green scales recede somewhat."},
01278
01279 "slimy green scales"
01280 },
01281
01282 { MUT_THIN_METALLIC_SCALES, 2, 3, false, true,
01283 NULL,
01284
01285 {"You are partially covered in colourless scales (AC +1).",
01286 "You are mostly covered in thin metallic scales (AC +2).",
01287 "You are completely covered in thin metallic scales (AC +3, rElec)."},
01288
01289 {"Colourless scales grow over part of your body.",
01290 "Your colourless scales are metallic and spread over more of your body.",
01291 "Thin metallic scales cover your body completely."},
01292
01293 {"Your colourless scales disappear.",
01294 "Your thin metallic scales recede somewhat.",
01295 "Your thin metallic scales recede somewhat."},
01296
01297 "thin metallic scales"
01298 },
01299
01300 { MUT_THIN_SKELETAL_STRUCTURE, 2, 3, false, true,
01301 NULL,
01302
01303 {"You have a somewhat thin skeletal structure (Dex +1, Str -1, Stlth).",
01304 "You have a moderately thin skeletal structure (Dex +2, Str -2, Stlth).",
01305 "You have an unnaturally thin skeletal structure (Dex +3, Str -3, Stlth)."},
01306
01307 {"Your bones become slightly less dense.",
01308 "Your bones become somewhat less dense.",
01309 "Your bones become less dense."},
01310
01311 {"Your skeletal structure returns to normal.",
01312 "Your skeletal structure densifies.",
01313 "Your skeletal structure densifies."},
01314
01315 "thin skeletal structure"
01316 },
01317
01318 { MUT_YELLOW_SCALES, 2, 3, false, true,
01319 NULL,
01320
01321 {"You are partially covered in colourless scales (AC +1).",
01322 "You are mostly covered in yellow scales (AC +2, rAcid+).",
01323 "You are completely covered in yellow scales (AC +3, rAcid++)."},
01324
01325 {"Colourless scales grow over part of your body.",
01326 "Your colourless scales turn yellow and spread over more of your body.",
01327 "Yellow scales cover you completely."},
01328
01329 {"Your colourless scales disappear.",
01330 "Your yellow scales recede somewhat.",
01331 "Your yellow scales recede somewhat."},
01332
01333 "yellow scales"
01334 }
01335
01336 #endif