Skip to content

Commit

Permalink
Adds buff shrimps
Browse files Browse the repository at this point in the history
motherfucker's absolutely hung
  • Loading branch information
Litberries committed Dec 6, 2023
1 parent 0d1e2a8 commit 18a1329
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions code/modules/mob/living/simple_animal/hostile/ordeal/shrimps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,30 @@ mob/living/simple_animal/hostile/shrimp_rifleman
minimum_distance = 3
casingtype = /obj/item/ammo_casing/caseless/ego_shrimprifle
projectilesound = 'sound/weapons/gun/pistol/shot_alt.ogg'


//extra buff shrimp i guess
/mob/living/simple_animal/hostile/senior_shrimp
name = "wellcheers corp senior officer"
desc = "An unnaturally jacked shrimp."
icon = 'ModularTegustation/Teguicons/32x32.dmi'
icon_state = "wellcheers_ripped"
icon_living = "wellcheers_ripped"
faction = list("shrimp")
health = 1337
maxHealth = 1337
melee_damage_type = RED_DAMAGE
damage_coeff = list(RED_DAMAGE = 0.8, WHITE_DAMAGE = 1.5, BLACK_DAMAGE = 1, PALE_DAMAGE = 2)
melee_damage_lower = 20
melee_damage_upper = 24
robust_searching = TRUE
stat_attack = HARD_CRIT
deal_on_death = TRUE
attack_verb_continuous = "bashes"
attack_verb_simple = "bashes"
attack_sound = 'sound/effects/meteorimpact.ogg'
speak_emote = list("burbles")

/mob/living/simple_animal/hostile/senior_shrimp/ComponentInitialize()
..()
AddComponent(/datum/component/knockback, 3, FALSE, FALSE)

0 comments on commit 18a1329

Please sign in to comment.