Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tribal ancient book revamped #392

Merged
merged 14 commits into from
Apr 8, 2024
17 changes: 10 additions & 7 deletions code/game/objects/items/granters.dm
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@
/obj/item/book/granter/trait/selection/tribal
name = "Book of Ancient Knowledge"
desc = "A compendium of knowledge passed down from the elders. It looks to be in poor condition."
choices = list("Hit Them With Sticks","Technophilia","Pugilist","Padded Feet","Veteran Table Climber","Basic Surgery","Desert Affinity")
choices = list("Hit Them With Sticks","Technophilia","Pugilist","Nightstalker Ritual","Rite of Resiliance","Basic Surgery","Desert Affinity","Brahmin Shaman")

/obj/item/book/granter/trait/selection/tribal/attack_self(mob/user)
if(!granted_trait)
Expand All @@ -1012,18 +1012,21 @@
if("Pugilist")
granted_trait = TRAIT_IRONFIST
traitname = "using your fists"
if("Padded Feet")
granted_trait = TRAIT_LIGHT_STEP
traitname = "treading carefully"
if("Veteran Table Climber")
granted_trait = TRAIT_FREERUNNING
traitname = "....climbing tables"
if("Nightstalker Ritual")
granted_trait = TRAIT_TOXINLOVER
traitname = "toxin immunity"
if("Rite of Resiliance")
granted_trait = TRAIT_NOLIMBDISABLE
traitname = "endurance"
if("Basic Surgery")
granted_trait = TRAIT_SURGERY_LOW
traitname = "basic surgery"
if("Desert Affinity")
granted_trait = TRAIT_HARD_YARDS
traitname = "trekking"
if("Brahmin Shaman")
granted_trait = TRAIT_CALCIUM_HEALER
traitname = "milk traditions"
return ..()

/obj/item/book/granter/trait/selection/tribal/Initialize()
Expand Down
Loading