edits
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
|
//funny reference to the video 'Expiration Date'
|
||||||
|
|
||||||
/mob/living/simple_animal/hostile/bread
|
/mob/living/simple_animal/hostile/bread
|
||||||
name = "tumor bread"
|
name = "tumor bread"
|
||||||
desc = "I have done nothing but teleport bread for three days."
|
desc = "I have done nothing but teleport bread for three days."
|
||||||
icon_state = "tumorbread"
|
icon_state = "tumorbread"
|
||||||
health = 1
|
health = 1
|
||||||
maxHealth = 1
|
maxHealth = 1
|
||||||
turns_per_move = 5 //this isn't player speed =|
|
turns_per_move = 5 //this isn't player speed =|
|
||||||
speed = 2 //this is player speed
|
speed = 2 //this is player speed
|
||||||
melee_damage_lower = 1
|
melee_damage_lower = 1
|
||||||
melee_damage_upper = 2
|
melee_damage_upper = 2
|
||||||
obj_damage = 0
|
obj_damage = 0
|
||||||
@@ -64,4 +66,4 @@
|
|||||||
return
|
return
|
||||||
|
|
||||||
/mob/living/simple_animal/hostile/bread/start_pulling()
|
/mob/living/simple_animal/hostile/bread/start_pulling()
|
||||||
return FALSE //No.
|
return FALSE
|
||||||
|
|||||||
@@ -354,7 +354,7 @@
|
|||||||
/mob/living/simple_animal/proc/drop_loot()
|
/mob/living/simple_animal/proc/drop_loot()
|
||||||
if(loot.len)
|
if(loot.len)
|
||||||
for(var/i in loot)
|
for(var/i in loot)
|
||||||
new i(loc)
|
new i(loc, dir = src.dir)
|
||||||
|
|
||||||
/mob/living/simple_animal/death(gibbed)
|
/mob/living/simple_animal/death(gibbed)
|
||||||
movement_type &= ~FLYING
|
movement_type &= ~FLYING
|
||||||
|
|||||||
Reference in New Issue
Block a user