Created
September 8, 2024 06:33
-
-
Save jesterjunk/894e972bb8b7b3204befe6b6aef9c4c8 to your computer and use it in GitHub Desktop.
Wurm Unlimited Creature Types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SENTINEL = 0 // will not move | |
| TRADER = 1 // acts as a trader | |
| MOVERANDOM = 2 | |
| ANIMAL = 3 // can be groomed | |
| INVULNERABLE = 4 // cannot kill | |
| NPC_TRADER = 5 // acts as a trader | |
| AGG_HUMAN = 6 // attacks all humans | |
| MOVE_LOCAL = 7 // stays within a radius of where it was spawned | |
| MOVE_GLOBAL = 8 // moves all over the map | |
| GRAZER = 9 // eats grass like horses do | |
| HERD = 10 // gathers with others of its type? | |
| VILLAGE_GUARD = 11 //Not recommended to be used | |
| SWIMMING = 12 // able to swim | |
| HUNTING = 13 // attacks Prey type creatures | |
| LEADABLE = 14 // able to be led without taming | |
| MILK = 15 // can be milked | |
| MONSTER = 16 | |
| HUMAN = 17 | |
| REGENERATING = 18 // regens hp | |
| DRAGON = 19 | |
| UNIQUE = 20 // makes it a unique creature like the Kyklops and Troll King | |
| KINGDOM_GUARD = 21 //Not recommended to be used | |
| GHOST = 22 // can walk through walls. Makes them see through | |
| SPIRIT_GUARD = 23 //Not recommended to be used | |
| DEFEND_KINGDOM = 24 // will attack other kingdoms than its own | |
| AGG_WHITIE = 25 // attacks white light players | |
| BARTENDER = 26 // gives food to noobs | |
| OMNIVORE = 27 // eats meat and non meat | |
| HERBIVORE = 28 // only eats non meat | |
| CARNIVORE = 29 // only eats meat | |
| CLIMBER = 30 | |
| REBORN = 31 // raised from the dead already | |
| DOMINATABLE = 32 // able to be dominated | |
| UNDEAD = 33 | |
| CAVEDWELLER = 34 | |
| FLEEING = 35 // runs away from you when you get close | |
| DETECTINVIS = 36 | |
| SUBMERGED = 37 // swiming creatures use this. Not recommended to be used | |
| FLOATING = 38 does not sink to bottom of the water? | |
| NON_NEWBIE = 39 // will not spawn if newbie server is check in server settings | |
| FENCEBREAKER = 40 // breaks down fences. Cannot be penned in with walls or buildings | |
| VEHICLE = 41 // can be ridden | |
| HORSE = 42 // when bred, has unique names like horses | |
| DOMESTIC = 43 can be tamed, led, etc | |
| CAREFUL = 44 | |
| OPENDOORS = 45 // can open doors and gates and go through them | |
| TOWERBASHER = 46 | |
| ONLYATTACKPLAYERS = 47 | |
| NOATTACKVEHICLE = 48 | |
| PREY = 49 // Hunting creatures will attack this creature | |
| VALREI = 50 | |
| BEACH = 51 | |
| WOOL = 52 | |
| WARGUARD = 53 | |
| BLACK_OR_WHITE = 54 | |
| BURNING = 55 | |
| RIFT = 56 | |
| STEALTH = 57 | |
| CASTER = 58 | |
| SUMMONER = 59 | |
| MISSION_OK = 60 // can be targeted in missions | |
| MISSION_TRAITOR_OK = 61 // can be made a traitor in missions | |
| NO_REBIRTH = 62 // cannot be brought back to life |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment