Skip to content

Commit

Permalink
roaches (#362)
Browse files Browse the repository at this point in the history
* roache

* roachor

* statadjust
  • Loading branch information
cornercube authored Mar 3, 2024
1 parent 5fbdbe9 commit 45f5f84
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
pass_flags = PASSTABLE | PASSGRILLE | PASSMOB
mob_size = MOB_SIZE_TINY
mob_biotypes = MOB_ORGANIC|MOB_BUG
faction = list("roach")
response_help_continuous = "pokes"
response_help_simple = "poke"
response_disarm_continuous = "shoos"
Expand Down
43 changes: 43 additions & 0 deletions code/modules/mob/living/simple_animal/hostile/f13/insects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@
icon_living = "radroach"
icon_dead = "radroach_dead"
icon_gib = "radroach_gib"
faction = list("roach")

speed = 1
maxHealth = 40
Expand Down Expand Up @@ -466,3 +467,45 @@
aggrosound = list('sound/creatures/radroach_chitter.ogg',)
idlesound = list('sound/f13npc/roach/idle1.ogg', 'sound/f13npc/roach/idle2.ogg', 'sound/f13npc/roach/idle3.ogg',)
death_sound = 'sound/f13npc/roach/roach_death.ogg'


//radioactive roach
//worse melee, can shoot glowing globs
/mob/living/simple_animal/hostile/radroach/glowroach
name = "glowroach"
desc = "A large mutated insect that glows from its radioactive blood."
icon_state = "glowroach"
icon_living = "glowroach"
icon_dead = "glowroach_dead"

harm_intent_damage = 6
obj_damage = 15
light_system = MOVABLE_LIGHT
light_range = 1
projectiletype = /obj/item/projectile/neurotox
projectilesound = 'sound/f13npc/centaur/spit.ogg'

//the mighty ROACHOR
//boss radroach
//placeholder stats
//please give it unique gimmicks down the line
/mob/living/simple_animal/hostile/radroach/glowroach/roachor
name = "Roachor"
desc = "A very large mutated insect the size of a car. You speculate it has been absorbing radiation this whole time"
icon = 'icons/fallout/mobs/animals/roachor.dmi'
icon_state = "roachor"
icon_living = "roachor"
icon_dead = "roachor_dead"
icon_gib = "radroach_gib"
move_to_delay = 5
stat_attack = SOFT_CRIT
robust_searching = TRUE

light_range = 3
maxHealth = 800 //tanky
health = 800
harm_intent_damage = 8
obj_damage = 300 //more than a deathclaw
armour_penetration = 0.1
melee_damage_lower = 25
melee_damage_upper = 34 //3-4 hit kill
Binary file modified icons/fallout/mobs/animals/insects.dmi
Binary file not shown.
Binary file added icons/fallout/mobs/animals/roachor.dmi
Binary file not shown.

0 comments on commit 45f5f84

Please sign in to comment.