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

Increased volume of pillows, body-pillow, and volume capacity of pillowcase #77801

Merged
merged 1 commit into from
Nov 14, 2024

Conversation

Night-Pryanik
Copy link
Contributor

Summary

Bugfixes "Increased volume of pillows, body-pillow, and capacity of pillowcase"

Purpose of change

Describe the solution

Based on #48606 (comment), I increased volume of all pillows to 40 liters, bodypillow to 70 liters, and volume capacity of pillowcase to 42 liters.

Describe alternatives you've considered

None.

Testing

Started game with no errors, found pillow in some house, checked its volume.

Additional context

None.

@Night-Pryanik Night-Pryanik added [JSON] Changes (can be) made in JSON Items / Item Actions / Item Qualities Items and how they work and interact Items: Containers Things that hold other things labels Nov 13, 2024
@github-actions github-actions bot added <Bugfix> This is a fix for a bug (or closes open issue) astyled astyled PR, label is assigned by github actions json-styled JSON lint passed, label assigned by github actions BasicBuildPassed This PR builds correctly, label assigned by github actions labels Nov 13, 2024
@IdleSol
Copy link
Contributor

IdleSol commented Nov 13, 2024

Not that it matters, at this point.

40 x 60 - for children, teenagers and single beds
50 x 60 - for single beds(~90 cm) and 1.5 beds (~120 cm)
60 x 60 - for 1.5 and double beds (>160cm)

The height depends on a person's build and preferences. From 8 to 14 cm.

What I suggest

  1. pillow:
    60 x 60 x 10 = 36 L

"using": [ [ "sewing_standard", 12 ] ],
"components": [ [ [ "cotton_patchwork", 4 ] ], [ [ "cotton_ball", 8 ] ] ]

    "using": [ [ "tailoring_cotton_patchwork", 6 ] ],
    "components": [ [ [ "cotton_ball", 1440 ] ] ]

For 60 x 60 x 10 -> (60 x 60 + 60 x 10 + 60 x 10 ) x 2 = 9600 cm2
sheet_cotton = sheet_cotton_patchwork = 60 x 30 = 1800 cm2
9600 / 1800 = 5.33 ~ 6

cotton_ball = 25 ml x 1440 = 36 L

  1. makeshift_pillow:
    60 x 40 x 10 = 24 L

"using": [ [ "sewing_standard", 12 ] ],
"components": [ [ [ "cotton_patchwork", 4 ] ], [ [ "straw_pile", 3 ], [ "withered", 15 ], [ "pine_bough", 10 ] ] ]

    "using": [ [ "tailoring_cotton_patchwork", 4 ] ],
    "components": [ [ [ "straw_pile", 96 ], [ "withered", 96 ], [ "pine_bough", 48 ] ] ]

For 60 x 40 x 10 -> (60 x 40 + 60 x 10 + 40 x 10 ) x 2 = 6800 cm2
6800 / 1800 = 3.78 ~ 4

straw_pile, withered = 250ml x 96 = 24 L
pine_bough = 500ml x 48 = 24 L

  1. bodypillow
    175 x 40 x 10 = 70 L

"using": [ [ "sewing_standard", 12 ], [ "drawing_tool", 20 ] ],
"components": [ [ [ "sheet", 1 ] ], [ [ "cotton_ball", 20 ] ] ]

   "using": [ [ "sewing_standard", 24 ], [ "drawing_tool", 20 ] ],
    "components": [ [ [ "sheet", 2 ] ], [ [ "cotton_ball", 2800 ] ] ]

sheet = 182 x 61 = 11102 cm2
For 175 x 40 x 10 -> (175 x 40 + 175 x 10 + 40 x 10 ) x 2 = 18300 cm2
18300 / 11102 = 1.65 ~ 2

cotton_ball = 25 ml x 2800 = 70 L

  1. down_pillow
    60 x 60 x 10 = 36 L

"using": [ [ "sewing_standard", 12 ] ],
"components": [ [ [ "cotton_patchwork", 6 ] ], [ [ "down_feather", 40 ] ] ]

    "using": [ [ "tailoring_cotton_patchwork", 6 ] ],
    "components": [ [ [ "down_feather", 9600 ] ] ]

down_feather = 2.50 ml x 9600 = 24 L

Note. I'm not insisting on changing the recipes. Just a spontaneous desire to calculate the recipes.

P.S. The problem is that if you take the weight of the components, the pillows weigh 30 kg.

@Maleclypse Maleclypse merged commit 27b424d into CleverRaven:master Nov 14, 2024
20 of 26 checks passed
@Night-Pryanik Night-Pryanik deleted the pillow branch November 15, 2024 02:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
astyled astyled PR, label is assigned by github actions BasicBuildPassed This PR builds correctly, label assigned by github actions <Bugfix> This is a fix for a bug (or closes open issue) Items: Containers Things that hold other things Items / Item Actions / Item Qualities Items and how they work and interact [JSON] Changes (can be) made in JSON json-styled JSON lint passed, label assigned by github actions
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Pillow and pillowcase volumes are heavily mismatched.
3 participants