This commit is contained in:
Timothy Teakettle
2021-01-07 16:46:42 +00:00
parent 22cab3c275
commit 44667ae1b6
2 changed files with 6 additions and 4 deletions

View File

@@ -1,11 +1,13 @@
//funny reference to the video 'Expiration Date'
/mob/living/simple_animal/hostile/bread
name = "tumor bread"
desc = "I have done nothing but teleport bread for three days."
icon_state = "tumorbread"
health = 1
maxHealth = 1
turns_per_move = 5 //this isn't player speed =|
speed = 2 //this is player speed
turns_per_move = 5 //this isn't player speed =|
speed = 2 //this is player speed
melee_damage_lower = 1
melee_damage_upper = 2
obj_damage = 0
@@ -64,4 +66,4 @@
return
/mob/living/simple_animal/hostile/bread/start_pulling()
return FALSE //No.
return FALSE

View File

@@ -354,7 +354,7 @@
/mob/living/simple_animal/proc/drop_loot()
if(loot.len)
for(var/i in loot)
new i(loc)
new i(loc, dir = src.dir)
/mob/living/simple_animal/death(gibbed)
movement_type &= ~FLYING