mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
@@ -20,16 +20,23 @@
|
||||
ventcrawler = 2
|
||||
faction = list("hostile")
|
||||
attack_sound = 'sound/effects/Reee.ogg'
|
||||
butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/nugget = 1)
|
||||
pass_flags = PASSTABLE | PASSGRILLE | PASSMOB
|
||||
mob_size = MOB_SIZE_TINY
|
||||
gold_core_spawnable = 1
|
||||
|
||||
/mob/living/simple_animal/frog/New()
|
||||
/mob/living/simple_animal/hostile/retaliate/frog/New()
|
||||
..()
|
||||
if(prob(1))
|
||||
name = "rare frog"
|
||||
desc = "It seems a little smug."
|
||||
icon_state = "rare_frog"
|
||||
icon_living = "rare_frog"
|
||||
icon_dead = "rare_frog_dead"
|
||||
butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/nugget = 5)
|
||||
|
||||
/mob/living/simple_animal/hostile/retaliate/frog/Crossed()
|
||||
if(!stat)
|
||||
playsound(src, 'sound/effects/Huuu.ogg', 100, 1)
|
||||
/mob/living/simple_animal/hostile/retaliate/frog/Crossed(AM as mob|obj)
|
||||
if(!stat && isliving(AM))
|
||||
var/mob/living/L = AM
|
||||
if(L.mob_size > MOB_SIZE_TINY)
|
||||
playsound(src, 'sound/effects/Huuu.ogg', 50, 1)
|
||||
Reference in New Issue
Block a user