#include #include ROOMS_H #include #include inherit LIB_POTION; static void create() { ::create(); SetKeyName("speedalin"); SetId(({"pill","stimulant"})); SetShort("a speedalin pill"); SetAdjectives(({"speedalin","small","white"})); SetLong("A small white stimulant."); SetMass(1); SetStrength(1); SetBaseCost("gold",2); SetStrength(1); SetMealType(MEAL_FOOD); SetMealMessages("You swallow a pill.", "$N swallows a pill."); SetDuration(20); SetStats( ([ "speed" : 2 ]) ); SetPoints( ([ "caffeine" : 35 ]) ); SetVendorType(VT_MAGIC); } void init(){ ::init(); }