Skip to content

Commit

Permalink
oko
Browse files Browse the repository at this point in the history
  • Loading branch information
casualspacestation14enjoyer committed Dec 14, 2024
1 parent ed3ff44 commit e51bb38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/datums/round_aspects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
description = "The Lords accidentally recruited goblins instead of humens."
*/

/datum/round_aspect/cripplefight
name = "Cripple Fight"
description = "Sadly, due to a previous skirmish everyone has their legs crippled. Thankfully we have been provided with wheelchairs!"

/datum/round_aspect/supplypoints
name = "Favors in the Right Places"
description = "Because the Lords both have favors to the Quartermaster of Enigma, they both get five supply points on the start of the battle."
Expand Down
7 changes: 7 additions & 0 deletions code/modules/jobs/job_types/roguetown/warfare.dm
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@
if(aspect_chosen(/datum/round_aspect/squishyhumans))
HU.STACON = 6

if(aspect_chosen(/datum/round_aspect/cripplefight))
var/datum/brain_trauma/severe/paralysis/paraplegic/T = new()
var/obj/vehicle/ridden/wheelchair/wheels = new(get_turf(HU))

HU.gain_trauma(T, TRAUMA_RESILIENCE_ABSOLUTE)
wheels.buckle_mob(HU)

/*
if(aspect_chosen(/datum/round_aspect/goblino))
HU.set_species(/datum/species/goblin)
Expand Down

0 comments on commit e51bb38

Please sign in to comment.