362
edits
Line 234: | Line 234: | ||
* Whenever it is time to set weather of the world, for EACH MEMBER of your team with this disease, 25% chance this will change the weather to rain. | * Whenever it is time to set weather of the world, for EACH MEMBER of your team with this disease, 25% chance this will change the weather to rain. | ||
=== Head (Enlarged Head) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1557: | |||
ModBase(71, -a * (5 + num / 3), hide: false); | |||
ModBase(72, -a * (4 + num / 4), hide: false); | |||
ModBase(74, a * (6 + num / 2), hide: false); | |||
ModBase(75, a * (2 + num / 6), hide: false); | |||
</syntaxhighlight> | |||
* Four modifier for this disease: | |||
** END by - (5 + Character LV / 3) | |||
** DEX by - (4 + Character LV / 4) | |||
** LEN by + (6 + Character LV / 2) | |||
** WIL by + (2 + Character LV / 6) | |||
=== Violence (Hunger For Slaughter) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1556: | |||
ModBase(64, -a * (10 + num), hide: false); | |||
ModBase(67, a * (5 + num / 2), hide: false); | |||
break; | |||
</syntaxhighlight> | |||
* This disease modify you DV by -(10 + Character Level), but increase your DMG by (5 + Character level / 2). | |||
=== Neck (Thick Neck) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1555: | |||
ModBase(65, a * (12 + num), hide: false); | |||
ModBase(77, -a * (5 + num / 5), hide: false); | |||
if (!hint && a > 0) | |||
{ | |||
chara?.body.UnequipAll(31); | |||
} | |||
break; | |||
</syntaxhighlight> | |||
* This disease increase you PV by (12 + Character Level), but also decrease you CHA by -(5+ Character level / 5). | |||
* It also forcees you to unequip everything on your neck. | |||
=== Wing (Ether Wing) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1554: | |||
ModBase(404, a * 10, hide: false); | |||
ModBase(401, a, hide: false); | |||
ModBase(79, a * (10 + num / 5), hide: false); | |||
if (!hint && a > 0) | |||
{ | |||
chara?.body.UnequipAll(33); | |||
} | |||
break; | |||
</syntaxhighlight> | |||
* This disease modify your weight (weightMod) by -10% per level. | |||
* It also give you a level of levitation per level of disease. ('''Are there multiple level of levitations?''') | |||
* It increases your Speed by (10 + Character LV / 5) per level. | |||
* It force you to unequip everything on your back. | |||
=== Eye (Third/Fourth Eye) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1553: | |||
ModBase(73, a * (5 + num / 3), hide: false); | |||
ModBase(77, -a * (5 + num / 3), hide: false); | |||
break; | |||
</syntaxhighlight> | |||
* This disease modify your PER by (5 + Character LV / 3), but also decrease your CHA by the same amount per level. | |||
=== Feet (Hoof Transformation) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1552: | |||
ModBase(79, a * Mathf.Min(30 + num / 5, 100), hide: false); | |||
if (!hint && a > 0) | |||
{ | |||
chara?.body.UnequipAll(39); | |||
} | |||
break; | |||
</syntaxhighlight> | |||
* This disease increase your speed by (30 + Character Lv / 5), with a maximum of 100 (reached at Character LV 350). | |||
* It also prevent you from equip anything on your feet. | |||
=== Armor (Heavy Shell) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1562: | |||
ModBase(65, a * (15 + num / 2), hide: false); | |||
ModBase(79, -a * (10 + num / 5), hide: false); | |||
break; | |||
</syntaxhighlight> | |||
* This disease increase your PV by (15 + Character LV / 2), but also modify your speed by -(10 + Character LV / 5). | |||
=== Ugly (Crumbling Face) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1551: | |||
ModBase(77, -a * (4 + num / 5), hide: false); | |||
break; | |||
</syntaxhighlight> | |||
* This disease decrease your CHA by (4 + Character LV / 5) per level. There are three levels. | |||
=== Gravity (Immense Gravity) === | |||
<syntaxhighlight lang="c#" line="1"> | |||
case 1550: | |||
ModBase(404, -a * 10, hide: false); | |||
break; | |||
</syntaxhighlight> | |||
* This disease increase your weight (weightMod) by 10% per level. There are three levels. | |||
[[Category: EN]] | [[Category: EN]] | ||
[[Category: Elin Spoiler]] | [[Category: Elin Spoiler]] |
edits