From 18a1329b7377cc88bed2a8e9319ee3e8f0f8eab2 Mon Sep 17 00:00:00 2001 From: Litberries <129991883+Litberries@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:07:39 -0500 Subject: [PATCH] Adds buff shrimps motherfucker's absolutely hung --- .../simple_animal/hostile/ordeal/shrimps.dm | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/ordeal/shrimps.dm b/code/modules/mob/living/simple_animal/hostile/ordeal/shrimps.dm index 3744a98b4e09..9cb70b3f4a5f 100644 --- a/code/modules/mob/living/simple_animal/hostile/ordeal/shrimps.dm +++ b/code/modules/mob/living/simple_animal/hostile/ordeal/shrimps.dm @@ -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)