/mob/living/basic/butterfly name = "butterfly" desc = "A colorful butterfly, how'd it get up here?" icon_state = "butterfly" icon_living = "butterfly" icon_dead = "butterfly_dead" faction = list("neutral", "jungle") response_help_continuous = "shoos" response_help_simple = "shoo" response_disarm_continuous = "brushes aside" response_disarm_simple = "brush aside" response_harm_continuous = "squashes" response_harm_simple = "squash" ai_controller = /datum/ai_controller/basic_controller/butterfly maxHealth = 2 health = 2 harm_intent_damage = 1 density = FALSE pass_flags = PASSTABLE | PASSGRILLE | PASSMOB ventcrawler = VENTCRAWLER_ALWAYS mob_size = MOB_SIZE_TINY mob_biotypes = MOB_ORGANIC | MOB_BUG butcher_results = list(/obj/item/food/meat = 0) gold_core_spawnable = FRIENDLY_SPAWN initial_traits = list(TRAIT_FLYING, TRAIT_EDIBLE_BUG) /mob/living/basic/butterfly/Initialize(mapload) . = ..() color = rgb(rand(0, 255), rand(0, 255), rand(0, 255)) /datum/ai_controller/basic_controller/butterfly ai_movement = /datum/ai_movement/basic_avoidance idle_behavior = /datum/idle_behavior/idle_random_walk