Difference between revisions of "Sadist"
Jump to navigation
Jump to search
m (Dark Knights -> dark knights , necromancerERS -> necromancers) |
|||
(One intermediate revision by one other user not shown) | |||
Line 35: | Line 35: | ||
== Sadists == | == Sadists == | ||
− | *All types of [[dark | + | *All types of [[dark knight]]s |
− | *All types of [[guard]] | + | *All types of [[Dark Mage|dark magi]] |
− | *All types of [[mistress]] | + | *All types of [[guard]]s |
− | *All types of [[necromancer]] | + | *All types of [[mistress]]es |
− | *All types of [[orc]] | + | *All types of [[necromancer]]s |
+ | *All types of [[orc]]s | ||
*All [[shopkeeper]]s | *All [[shopkeeper]]s | ||
*[[Angel]] of [[Cleptia]] | *[[Angel]] of [[Cleptia]] | ||
Line 49: | Line 50: | ||
*[[Angel]] of [[Scabies]] | *[[Angel]] of [[Scabies]] | ||
*[[Banana grower encourager]] | *[[Banana grower encourager]] | ||
− | *Black [[unicorn]] | + | *Black [[unicorn]]s |
− | + | *[[Hunter]]s | |
− | *[[Hunter]] | ||
− | |||
*[[Oree]] the blood daemon king | *[[Oree]] the blood daemon king | ||
− | *[[Punisher]] | + | *[[Punisher]]s |
*[[Richel Decos]] | *[[Richel Decos]] | ||
*[[Rondol]] the [[kobold]] patriarch | *[[Rondol]] the [[kobold]] patriarch |
Latest revision as of 22:14, 18 September 2014
Coding: This article contains code which is for experienced users only, and may reveal game secrets
IsSadist is a char.dat tag that designates the character as a sadist. A sadist character equipped with a sadist weapon (belt, whip, banana, banana peel, broken bottle, nut, bodypart) will randomly attack allied masochistic characters.
truth character::CheckSadism() { if(!IsSadist() || !HasSadistAttackMode() || !IsSmall()) // gum return false; if(!RAND_N(10)) { for(int d = 0; d < 8; ++d) { square* Square = GetNeighbourSquare(d); if(Square) { character* Char = Square->GetCharacter(); if(Char && Char->IsMasochist() && GetRelation(Char) == FRIEND && Char->GetHP() * 3 >= Char->GetMaxHP() * 2 && Hit(Char, Square->GetPos(), d, SADIST_HIT)) { TerminateGoingTo(); return true; } } } } return false; }
Sadists
- All types of dark knights
- All types of dark magi
- All types of guards
- All types of mistresses
- All types of necromancers
- All types of orcs
- All shopkeepers
- Angel of Cleptia
- Angel of Cruentus
- Angel of Infuscor
- Angel of Mellis
- Angel of Mortifer
- Angel of Nefas
- Angel of Scabies
- Banana grower encourager
- Black unicorns
- Hunters
- Oree the blood daemon king
- Punishers
- Richel Decos
- Rondol the kobold patriarch