//Look Sir, free crabs! /mob/living/simple_animal/crab name = "crab" desc = "Free crabs!" icon_state = "crab" icon_living = "crab" icon_dead = "crab_dead" speak_emote = list("clicks") emote_hear = list("clicks.") emote_see = list("clacks.") blood_volume = 350 speak_chance = 1 turns_per_move = 5 butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab = 1) response_help = "pets" response_disarm = "gently pushes aside" response_harm = "stomps" stop_automated_movement = 1 friendly = "pinches" ventcrawler = VENTCRAWLER_ALWAYS var/obj/item/inventory_head var/obj/item/inventory_mask gold_core_spawnable = FRIENDLY_SPAWN /mob/living/simple_animal/crab/Life() ..() //CRAB movement if(!ckey && !stat) if(isturf(src.loc) && !resting && !buckled) //This is so it only moves if it's not inside a closet, gentics machine, etc. turns_since_move++ if(turns_since_move >= turns_per_move) var/east_vs_west = pick(4,8) if(Process_Spacemove(east_vs_west)) Move(get_step(src,east_vs_west), east_vs_west) turns_since_move = 0 regenerate_icons() //COFFEE! SQUEEEEEEEEE! /mob/living/simple_animal/crab/Coffee name = "Coffee" real_name = "Coffee" desc = "It's Coffee, the other pet!" gender = FEMALE response_help = "pets" response_disarm = "gently pushes aside" response_harm = "stomps" gold_core_spawnable = NO_SPAWN /mob/living/simple_animal/crab/evil name = "Evil Crab" real_name = "Evil Crab" desc = "Unnerving, isn't it? It has to be planning something nefarious..." icon_state = "evilcrab" icon_living = "evilcrab" icon_dead = "evilcrab_dead" response_help = "pokes" response_disarm = "shoves" response_harm = "stomps" gold_core_spawnable = HOSTILE_SPAWN /mob/living/simple_animal/crab/kreb name = "Kreb" desc = "This is a real crab. The other crabs are simply gubbucks in disguise!" real_name = "Kreb" icon_state = "kreb" icon_living = "kreb" icon_dead = "kreb_dead" response_help = "pets" response_disarm = "gently pushes aside" response_harm = "stomps" gold_core_spawnable = NO_SPAWN /mob/living/simple_animal/crab/evil/kreb name = "Evil Kreb" real_name = "Evil Kreb" icon_state = "evilkreb" icon_living = "evilkreb" icon_dead = "evilkreb_dead" gold_core_spawnable = NO_SPAWN