Skip to content

Commit

Permalink
first changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Aug 21, 2024
1 parent df9e105 commit a9b6bd3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions code/datums/pain/pain_mook.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/datum/pain/mook
max_pain = 100

threshold_mild = 10
threshold_discomforting = 15
threshold_moderate = 20
threshold_distressing = 30
threshold_severe = 35
threshold_horrible = 40

feels_pain = TRUE
10 changes: 10 additions & 0 deletions code/modules/mob/living/carbon/human/species/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@
. = ..()
INVOKE_ASYNC(humanoidmob, TYPE_PROC_REF(/mob, emote), pick("pain", "scream"))

//intended for use as enemy opposing forces
/datum/species/human/mooks
name = "Human Mooks"
name_plural = "Human Mooks"
primitive = /mob/living/carbon/human/monkey
brute_mod = 3
burn_mod = 1.5
unarmed_type = /datum/unarmed_attack/punch
pain_type = /datum/pain/mook

//Tougher humans, basically action movie protagonists.
/datum/species/human/hero
name = "Human Hero"
Expand Down

0 comments on commit a9b6bd3

Please sign in to comment.