diff --git a/code/modules/mob/simple_animal/munchkin.dm b/code/modules/mob/simple_animal/munchkin.dm new file mode 100644 index 00000000000..4999b3dbbd3 --- /dev/null +++ b/code/modules/mob/simple_animal/munchkin.dm @@ -0,0 +1,31 @@ +//kobold +/mob/living/simple_animal/kobold + name = "kobold" + desc = "A small, rat-like creature." + icon = 'mob.dmi' + icon_state = "kobold_idle" + icon_living = "kobold_idle" + icon_dead = "kobold_dead" + speak = list("You no take candle!","Ooh, pretty shiny.","Me take?","Where gold here...","Me likey.") + speak_emote = list("mutters","hisses","grumbles") + emote_hear = list("mutters under it's breath.","grumbles.", "yips!") + emote_see = list("looks around suspiciously.", "scratches it's arm.","putters around a bit.") + speak_chance = 15 + turns_per_move = 5 + see_in_dark = 6 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/sliceable/meat + response_help = "pets the" + response_disarm = "gently pushes aside the" + response_harm = "kicks the" + +/mob/living/simple_animal/kobold/Life() + ..() + if(prob(15) && turns_since_move) + flick("kobold_act",src) + +/mob/living/simple_animal/kobold/Move(var/dir) + ..() + flick("kobold_walk",src) + +/mob/living/simple_animal/kobold/munchkin + name = "Munchkin"