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

Add filters to uniform printer #34316

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Resources/Locale/en-US/lathe/lathe-categories.ftl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generic
lathe-category-ammo = Ammo
lathe-category-circuitry = Circuitry
lathe-category-lights = Lights
Expand All @@ -7,6 +8,16 @@ lathe-category-robotics = Robotics
lathe-category-tools = Tools
lathe-category-weapons = Weapons

# Biogen
lathe-category-food = Food
lathe-category-chemicals = Chemicals
lathe-category-materials = Materials

# Uniform
lathe-category-bedsheets = Bedsheets
lathe-category-carpets = Carpets
lathe-category-coats = Coats
lathe-category-command = Command
lathe-category-hats = Hats
lathe-category-jumpsuits = Jumpsuits
lathe-category-neck = Neck
2 changes: 2 additions & 0 deletions Resources/Prototypes/Recipes/Lathes/bedsheets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
- type: latheRecipe
abstract: true
id: BaseBedsheetRecipe
categories:
- Bedsheets
completetime: 2
materials:
Cloth: 150
Expand Down
2 changes: 2 additions & 0 deletions Resources/Prototypes/Recipes/Lathes/carpets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
- type: latheRecipe
abstract: true
id: BaseCarpetRecipe
categories:
- Carpets
completetime: 1
materials:
Cloth: 100
Expand Down
31 changes: 30 additions & 1 deletion Resources/Prototypes/Recipes/Lathes/categories.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generic
- type: latheCategory
id: Ammo
name: lathe-category-ammo
Expand Down Expand Up @@ -31,7 +32,6 @@
name: lathe-category-weapons

# Biogen

- type: latheCategory
id: Food
name: lathe-category-food
Expand All @@ -43,3 +43,32 @@
- type: latheCategory
id: Materials
name: lathe-category-materials

# Uniform printer
- type: latheCategory
id: Bedsheets
name: lathe-category-bedsheets

- type: latheCategory
id: Carpets
name: lathe-category-carpets

- type: latheCategory
id: Coats
name: lathe-category-coats

- type: latheCategory
id: Command
name: lathe-category-command

- type: latheCategory
id: Hats
name: lathe-category-hats

- type: latheCategory
id: Jumpsuits
name: lathe-category-jumpsuits

- type: latheCategory
id: Neck
name: lathe-category-neck
19 changes: 18 additions & 1 deletion Resources/Prototypes/Recipes/Lathes/clothing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
- type: latheRecipe
abstract: true
id: BaseJumpsuitRecipe
categories:
- Jumpsuits
completetime: 4
materials:
Cloth: 300
Expand All @@ -11,13 +13,18 @@
abstract: true
parent: BaseJumpsuitRecipe
id: BaseCommandJumpsuitRecipe
categories:
- Jumpsuits
- Command
materials:
Cloth: 300
Durathread: 100

- type: latheRecipe
abstract: true
id: BaseCoatRecipe
categories:
- Coats
completetime: 3.2 # don't ask why its faster than a jumpsuit??
materials:
Cloth: 500
Expand All @@ -27,13 +34,18 @@
abstract: true
parent: BaseCoatRecipe
id: BaseCommandCoatRecipe
categories:
- Coats
- Command
materials:
Cloth: 500
Durathread: 300

- type: latheRecipe
abstract: true
id: BaseHatRecipe
categories:
- Hats
completetime: 2
materials:
Cloth: 100
Expand All @@ -42,18 +54,23 @@
abstract: true
parent: BaseHatRecipe
id: BaseCommandHatRecipe
categories:
- Hats
- Command
materials:
Cloth: 100
Durathread: 50

- type: latheRecipe
abstract: true
id: BaseNeckClothingRecipe
categories:
- Neck
completetime: 2
materials:
Cloth: 200

# Recipes
## Recipes

# Jumpsuits/skirts
- type: latheRecipe
Expand Down
Loading