mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-21 12:06:15 +01:00
Calorite golems are a new type of golem that can be made using 10 sheets of calorite that, thanks to the combined magical forces of both adamantine and calorite, can use magic to heal the wounded, make food more nourishing, and make people around them faster for a moment. Unfortunately, calorite golems lack the armor that other golems have, and their fists cannot stun or do much damage on their own.
24 lines
527 B
Plaintext
24 lines
527 B
Plaintext
#define MEAT (1<<0)
|
|
#define VEGETABLES (1<<1)
|
|
#define RAW (1<<2)
|
|
#define JUNKFOOD (1<<3)
|
|
#define GRAIN (1<<4)
|
|
#define FRUIT (1<<5)
|
|
#define DAIRY (1<<6)
|
|
#define FRIED (1<<7)
|
|
#define ALCOHOL (1<<8)
|
|
#define SUGAR (1<<9)
|
|
#define GROSS (1<<10)
|
|
#define TOXIC (1<<11)
|
|
#define PINEAPPLE (1<<12)
|
|
#define BREAKFAST (1<<13)
|
|
#define CLOTH (1<<14)
|
|
#define ANTITOXIC (1<<15)
|
|
#define BLESSED (1<<16)
|
|
|
|
#define DRINK_NICE 1
|
|
#define DRINK_GOOD 2
|
|
#define DRINK_VERYGOOD 3
|
|
#define DRINK_FANTASTIC 4
|
|
#define FOOD_AMAZING 5
|