Skip to content

Commit

Permalink
Very Lightweight and Heavyweight drunk traits (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
dffdff2423 authored Dec 22, 2024
1 parent 148fb64 commit 7c7ddff
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
9 changes: 9 additions & 0 deletions Resources/Locale/en-US/_CD/traits/traits.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@ trait-synth-desc = You are a biomechanical construct, who bleeds coolant and is
trait-mobster-name = Mobster accent
trait-mobster-desc = Nyehh, yous sound like da mobster boss type, see?
cd-trait-category-drinking-skill = Alcohol Tolerance
cd-trait-very-lightweight-name = Very Lightweight drunk
cd-trait-very-lightweight-desc = Alcohol has a much stronger effect on you.
cd-trait-heavyweight-name = Heavyweight drunk
cd-trait-heavyweight-desc = Alcohol has a weaker effect on you.
3 changes: 2 additions & 1 deletion Resources/Prototypes/Traits/quirks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
id: LightweightDrunk
name: trait-lightweight-name
description: trait-lightweight-desc
category: Quirks
category: DrinkingSkill # CD: Multiple levels
cost: 1 # CD: Multiple levels
components:
- type: LightweightDrunk
boozeStrengthMultiplier: 2
Expand Down
4 changes: 4 additions & 0 deletions Resources/Prototypes/_CD/Traits/categories.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- type: traitCategory
id: DrinkingSkill
name: cd-trait-category-drinking-skill
maxTraitPoints: 1
22 changes: 21 additions & 1 deletion Resources/Prototypes/_CD/Traits/traits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
- type: trait
- type: trait
id: Synthetic
name: trait-synth-name
description: trait-synth-desc
components:
- type: Synth

- type: trait
id: VeryLightweightDrunk
name: cd-trait-very-lightweight-name
description: cd-trait-very-lightweight-desc
category: DrinkingSkill
cost: 1
components:
- type: LightweightDrunk
boozeStrengthMultiplier: 4

- type: trait
id: HeavyweightDrunk
name: cd-trait-heavyweight-name
description: cd-trait-heavyweight-desc
category: DrinkingSkill
cost: 1
components:
- type: LightweightDrunk
boozeStrengthMultiplier: 0.5

0 comments on commit 7c7ddff

Please sign in to comment.