Skip to content

Commit

Permalink
Mirror: Adds craftable ducky slippers (#261)
Browse files Browse the repository at this point in the history
## Mirror of PR #26138: [Adds craftable ducky
slippers](space-wizards/space-station-14#26138)
from <img src="https://avatars.githubusercontent.com/u/10567778?v=4"
alt="space-wizards" width="22"/>
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)

###### `6694f92171ad8d6465b8c8403bf863ba66a75b74`

PR opened by <img
src="https://avatars.githubusercontent.com/u/58439124?v=4"
width="16"/><a href="https://github.com/Plykiya"> Plykiya</a> at
2024-03-15 11:38:14 UTC

---

PR changed 5 files with 43 additions and 1 deletions.

The PR had the following labels:
- No C#


---

<details open="true"><summary><h1>Original Body</h1></summary>

> <!-- Please read these guidelines before opening your PR:
https://docs.spacestation14.io/en/getting-started/pr-guideline -->
> <!-- The text between the arrows are comments - they will not be
visible on your PR. -->
> 
> ## About the PR
> <!-- What did you change in this PR? -->
> Allows you to craft ducky slippers out of two rubber duckies.
> 
> ## Why / Balance
> <!-- Why was it changed? Link any discussions or issues here. Please
discuss how this would affect game balance. -->
> Quack
> 
> ## Technical details
> <!-- If this is a code change, summarize at high level how your new
code works. This makes it easier to review. -->
> All yml requirements to add a construction graph, tags for it, and the
end result.
> 
> ## Media
> <!-- 
> PRs which make ingame changes (adding clothing, items, new features,
etc) are required to have media attached that showcase the changes.
> Small fixes/refactors are exempt.
> Any media may be used in SS14 progress reports, with clear credit
given.
> 
> If you're unsure whether your PR will require media, ask a maintainer.
> 
> Check the box below to confirm that you have in fact seen this (put an
X in the brackets, like [X]):
> -->
> 
> - [ X ] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
![image](https://github.com/space-wizards/space-station-14/assets/58439124/42a7e44c-3be1-42a4-9e0a-c9735380c63a)
> 
> **Changelog**
> <!--
> Make players aware of new features and changes that could affect how
they play the game by adding a Changelog entry. Please read the
Changelog guidelines located at:
https://docs.spacestation14.io/en/getting-started/pr-guideline#changelog
> -->
> 
> <!--
> Make sure to take this Changelog template out of the comment block in
order for it to show up.
> 🆑
> - add: Added fun!
> - remove: Removed fun!
> - tweak: Changed fun!
> - fix: Fixed fun!
> -->
> 🆑
> - add: You can now craft ducky slippers.


</details>

Signed-off-by: VMSolidus <[email protected]>
Co-authored-by: SimpleStation14 <Unknown>
Co-authored-by: VMSolidus <[email protected]>
  • Loading branch information
SimpleStation14 and VMSolidus committed May 29, 2024
1 parent 3898d09 commit 75106b3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Resources/Prototypes/Entities/Clothing/Shoes/misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
collection: FootstepDuck
params:
variation: 0.07
- type: Construction
graph: ClothingShoeSlippersDuck
node: shoes

- type: entity
parent: ClothingShoesBaseButcherable
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/Entities/Objects/Fun/toys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,9 @@
requiresSpecialDigestion: true
useSound:
path: /Audio/Items/Toys/mousesqueek.ogg
- type: Tag
tags:
- ToyRubberDuck

- type: entity
parent: BasePlushie
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
- type: constructionGraph
id: ClothingShoeSlippersDuck
start: start
graph:
- node: start
edges:
- to: shoes
steps:
- tag: ToyRubberDuck
name: a rubber ducky
icon:
sprite: Objects/Fun/ducky.rsi
state: icon
doAfter: 1
- tag: ToyRubberDuck
name: a rubber ducky
icon:
sprite: Objects/Fun/ducky.rsi
state: icon
doAfter: 1
- node: shoes
entity: ClothingShoeSlippersDuck
11 changes: 11 additions & 0 deletions Resources/Prototypes/Recipes/Construction/clothing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,14 @@
description: Two huds joined by arms
icon: { sprite: Clothing/Eyes/Hud/medsec.rsi, state: icon }
objectType: Item

- type: construction
name: ducky slippers
id: ClothingShoeSlippersDuck
graph: ClothingShoeSlippersDuck
startNode: start
targetNode: shoes
category: construction-category-clothing
description: Comfy, yet haunted by the ghosts of ducks you fed bread to as a child.
icon: { sprite: Clothing/Shoes/Misc/duck-slippers.rsi, state: icon }
objectType: Item
3 changes: 3 additions & 0 deletions Resources/Prototypes/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1190,6 +1190,9 @@
- type: Tag
id: Torch

- type: Tag
id: ToyRubberDuck

- type: Tag
id: ToySidearm

Expand Down

0 comments on commit 75106b3

Please sign in to comment.