From a248c176ae6f8d0c269b173e03c2e48540584917 Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Mon, 16 Dec 2024 10:43:29 +0200 Subject: [PATCH] Crane barrel (#672) * crane barrel * fix * sprite resize, file rename --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> --- .../Entities/Structures/Furniture/barrel.yml | 36 +++-- .../Structures/Furniture/barrel_crane.yml | 153 ++++++++++++++++++ .../_CP14/Recipes/Construction/furniture.yml | 2 +- .../{ => Barrels}/barrel.rsi/barrel.png | Bin .../{ => Barrels}/barrel.rsi/barrel_open.png | Bin .../{ => Barrels}/barrel.rsi/liq1.png | Bin .../{ => Barrels}/barrel.rsi/liq2.png | Bin .../{ => Barrels}/barrel.rsi/liq3.png | Bin .../{ => Barrels}/barrel.rsi/liq4.png | Bin .../{ => Barrels}/barrel.rsi/liq5.png | Bin .../{ => Barrels}/barrel.rsi/meta.json | 0 .../Barrels/crane_barrel.rsi/barrel.png | Bin 0 -> 3442 bytes .../Barrels/crane_barrel.rsi/meta.json | 15 ++ .../Barrels/crane_barrel_small.rsi/barrel.png | Bin 0 -> 2433 bytes .../Barrels/crane_barrel_small.rsi/meta.json | 15 ++ 15 files changed, 205 insertions(+), 16 deletions(-) create mode 100644 Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/barrel.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/barrel_open.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/liq1.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/liq2.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/liq3.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/liq4.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/liq5.png (100%) rename Resources/Textures/_CP14/Structures/Furniture/{ => Barrels}/barrel.rsi/meta.json (100%) create mode 100644 Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/barrel.png create mode 100644 Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/barrel.png create mode 100644 Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/meta.json diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel.yml b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel.yml index 24cd0d3d84..a0042c05c4 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel.yml @@ -1,7 +1,27 @@ +- type: entity + id: CP14BarrelSolution + abstract: true + components: + - type: InteractionOutline + - type: Appearance + - type: DrainableSolution + solution: barrel + - type: MixableSolution + solution: barrel + - type: RefillableSolution + solution: barrel + - type: DrawableSolution + solution: barrel + - type: DumpableSolution + solution: barrel + - type: Drink + solution: barrel + - type: entity id: CP14BaseBarrel parent: - BaseStructureDynamic + - CP14BarrelSolution - CP14BaseFlammable name: wooden barrel suffix: Empty @@ -24,7 +44,7 @@ False: {visible: true} - type: Sprite drawdepth: Mobs - sprite: _CP14/Structures/Furniture/barrel.rsi + sprite: _CP14/Structures/Furniture/Barrels/barrel.rsi noRot: true layers: - state: barrel_open @@ -35,7 +55,6 @@ map: ["enum.OpenableVisuals.Layer"] - type: Transform noRot: true - - type: InteractionOutline - type: Physics - type: Construction graph: CP14BaseBarrel @@ -87,7 +106,6 @@ collection: WoodDestroy - !type:DoActsBehavior acts: ["Destruction"] - - type: Appearance - type: SolutionContainerManager solutions: barrel: @@ -95,20 +113,8 @@ - type: SolutionContainerVisuals maxFillLevels: 5 fillBaseName: liq - - type: DrainableSolution - solution: barrel - type: ExaminableSolution solution: barrel - - type: MixableSolution - solution: barrel - - type: RefillableSolution - solution: barrel - - type: DrawableSolution - solution: barrel - - type: DumpableSolution - solution: barrel - - type: Drink - solution: barrel - type: entity id: CP14BarrelWater diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml new file mode 100644 index 0000000000..5a960741ef --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/barrel_crane.yml @@ -0,0 +1,153 @@ +- type: entity + id: CP14CraneBarrel + parent: [BaseStructure, CP14BarrelSolution, CP14BaseFlammable] + name: wooden crane barrel + description: Large lying barrel with tap, for storing valuable liquids. + suffix: Empty + categories: [ ForkFiltered ] + components: + - type: Sprite + drawdepth: Mobs + sprite: _CP14/Structures/Furniture/Barrels/crane_barrel.rsi + layers: + - state: barrel + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Transform + - type: Anchorable + delay: 3 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: barrel + - trigger: + !type:DamageTypeTrigger + damageType: Piercing + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: barrel + - trigger: + !type:DamageTrigger + damage: 25 + behaviors: + - !type:SpillBehavior + solution: barrel + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: SolutionContainerManager + solutions: + barrel: + maxVol: 500 + +- type: entity + parent: CP14CraneBarrel + id: CP14CraneBarrelBeer + suffix: Beer + categories: [ ForkFiltered ] + components: + - type: SolutionContainerManager + solutions: + barrel: + reagents: + - ReagentId: Beer + Quantity: 500 + +- type: entity + id: CP14CraneBarrelSmall + parent: [BaseStructureDynamic, CP14BarrelSolution, CP14BaseFlammable] + name: wooden small crane barrel + description: A small lying barrel with a tap to quickly pour liquid into mugs. + suffix: Empty + categories: [ ForkFiltered ] + placement: + mode: SnapgridCenter + components: + - type: Sprite + drawdepth: Mobs + sprite: _CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi + layers: + - state: barrel + - type: Transform + anchored: true + noRot: true + - type: Pullable + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 200 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: barrel + - trigger: + !type:DamageTypeTrigger + damageType: Piercing + damage: 5 + behaviors: + - !type:SolutionExplosionBehavior + solution: barrel + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:SpillBehavior + solution: barrel + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: SolutionContainerManager + solutions: + barrel: + maxVol: 50 + +- type: entity + parent: CP14CraneBarrelSmall + id: CP14CraneBarrelSmallBeer + suffix: Beer + categories: [ ForkFiltered ] + components: + - type: SolutionContainerManager + solutions: + barrel: + reagents: + - ReagentId: Beer + Quantity: 50 diff --git a/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml b/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml index 49416bad73..1c5c08d833 100644 --- a/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml @@ -26,7 +26,7 @@ targetNode: CP14BaseBarrel category: construction-category-furniture icon: - sprite: _CP14/Structures/Furniture/barrel.rsi + sprite: _CP14/Structures/Furniture/Barrels/barrel.rsi state: barrel objectType: Structure placementMode: PlaceFree diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/barrel.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/barrel.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/barrel.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/barrel.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/barrel_open.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/barrel_open.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/barrel_open.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/barrel_open.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq1.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq1.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq1.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq1.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq2.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq2.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq2.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq2.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq3.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq3.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq3.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq3.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq4.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq4.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq4.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq4.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq5.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq5.png similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/liq5.png rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/liq5.png diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/meta.json similarity index 100% rename from Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json rename to Resources/Textures/_CP14/Structures/Furniture/Barrels/barrel.rsi/meta.json diff --git a/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/barrel.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/barrel.png new file mode 100644 index 0000000000000000000000000000000000000000..86692034a52ed3f5c135625b036954da0ce8f938 GIT binary patch literal 3442 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 G;r|05%B|-B literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/meta.json new file mode 100644 index 0000000000..787a20198f --- /dev/null +++ b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CLA", + "copyright": "created by vladimir.s", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "barrel", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/barrel.png b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/barrel.png new file mode 100644 index 0000000000000000000000000000000000000000..cf8be3e553e119b1933e1f545e0dd8088d3a61c3 GIT binary patch literal 2433 zcmZuzc{r3^8-Gw{3_}cAqbw-?MuFM@9Bxo< za4x5ZEP;yS9?JA8P%$923;;Yj=EjD0;dyJ$Xm6)(kw2K;{pyM|G(8sG8{{|JWuf_j zS(9XuJwy!YwsaR|9c%lAEgY}KjyGk#wzi!9L~W8MD#V~zZeI;tEuelEVjl0_CYnF* zNK!a78<4dp6Dwpb|8%dlk0gJ0nbbe~mJiz`I<2F=6LotaFGt&9C)wW{kv%Pw{TX|> zH(Othj!>ir2L2m#PACg#`MKOWpMwVsqTUGuz1+HWPehWN} z7h%MyxoLmx>9VO|*-&J#UPQ6X#x|!F#2IKqRXNi)uYE6v2j#Jgxlhi|K9hX1r$nMW z5bl8CH#?&>Y7Ta$@d+MSnJzAH?aub%^ap5Xf8Z-I8vx)|RF&0KhXcEe{GY;WNTksl ze!wfx1p>S)7nRa#F7$YqcMO3tJxg@W=jFUH&aqx9yS~+`bR?lL;Art`2 z7A@mR8KLtLe?PSkAx#f)DXAjFq>n8%qi!t^PN1IrYTp0?3kF3qn z9>-;pf4QG;Ou9Ria-$`oF;(k2<#2wHTA~vl7jRA?Y#j;p*xq}+aCYb{z8y`diE`0x zK?P^T7t?#LOr{@6fLp66q?s^(%w0EuGIttoRDRvC+LT1b+7Uo|+GHi;HrrPBxS7h< z<<$@C1fbR3sOu+TnwdVX9vHA@9GgE=D-89YH-4wJ6j!Hc6I{+fQLCM7YRL!=4OQpz z8L+7IW+F~|DrZUZ!UQYgLrxdpl4j}T&Wrng;%*)ug;T2~YsTEi*~NizzLglznGUbw zs?3R21$*I8;R|#6uqBBZ*6%qX9nL$W=*ct|J3&THC?9p^vC5B+`yTbL_D;1!%h#*D zDPX~=Ag$fy6njdQi};evLSWW1Q|;yBS`rVze(Sa86M%m0N~{yp!@dgFVMk64!J3zu zm5zyuIYM7vH*O#0uEYK2o|4>}U2ebsa)h6(^5ca0VmYfC>76jWjwbZACZ6KBmw1RO zM1oBdGTtDjXX3dT>JopsHEJWqN^u>P#p10`9-YCzkyV17_Op(g=5#K(cMhc*3_y- zws>^u<;NS!O?-kZFyZgQ3C{2HFxaijYtYXU4ByI#eFHgS3dWy?4HHaysGukJcmvTz zZF^IHKR-0mpIG2hnWZQYG5CjbVZ`+Fw=!HmGDiMl2^JWWQ5sDxbYvSB3sN1m^zhGS zd0@j_V4P-28*mV7`mt({XcF0<<+RMUDoNgr@1}KjuM~f0#9bXTMHrEKz-riG zE|et^Iroc7o=TIKgz=d4CmefG1;-_B6R-{`#?-rAOBjvqu76y`e6D@`>F_oe1GI!~ zn)`Ff*WP=jJHh=~r5N(|N_~F2cCnGykZ=16ro$gcI$e8@^!s$QhiKBhGzYs-cXtZb zlycr7PAc4sNpn7MmNi9p^H>9R#jC&iEto;Rlnjb~eg1G6#Ev`7!IT`J?U{%rs;#nn zlOUu%Kb)R+pGMYAWYz1`-AKbKk$=;D`lj~2a09mL%~?_sY*nG&5IR3(5+E>Y(!EH! zl5v&W#_`j(BNIpwZns(;H3-MTggo?U=FSRPvHk#rsrS=*tjsU5E_B;AYO~)};raY( zKXWSw@y8R|0Fdl11;hr(uTbA~abk{=$R)jZUt-QJhh+Iz zXHA+Y<@~+!`8mJk!YdRK{Rb7C@YX+~<8PsabaGG%-#il{<(N-u=HL}pY7D$zm8rx^09jf`J9IPKO!W4ISZ7aOpM z{ktNzgd>_OQcg9HrCVcAfu~rwh~_uOocbptG_^C3aUU?S?3~yl7algpg_B0m;9CI` q@V<>HZzHW{d|#aTAK5+ZJOq|GXlgc8?QZZ-1(=&y8CP6&i~SE_DYt3> literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/meta.json new file mode 100644 index 0000000000..c7c1c82ac6 --- /dev/null +++ b/Resources/Textures/_CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CLA", + "copyright": "created by vladimir.s", + "size": { + "x": 32, + "y": 48 + }, + "states": [ + { + "name": "barrel", + "directions": 4 + } + ] +}