From 0d8cb084d8b4920f8dae90e0b98d445225b6e49e Mon Sep 17 00:00:00 2001 From: rosieposie <52761126+rosieposieeee@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:26:41 -0500 Subject: [PATCH] initial commit --- .../DeltaV/Catalog/Cargo/cargo_food.yml | 30 ++++ .../Structures/Storage/Crates/barrel.yml | 155 ++++++++++++++++++ .../DeltaV/Recipes/Crafting/Graphs/barrel.yml | 54 ++++++ .../DeltaV/Recipes/Crafting/barrel.yml | 25 +++ .../Objects/Storage/barrel.rsi/base.png | Bin 0 -> 1138 bytes .../Objects/Storage/barrel.rsi/closed.png | Bin 0 -> 339 bytes .../Objects/Storage/barrel.rsi/meta.json | 20 +++ .../Objects/Storage/barrel.rsi/open.png | Bin 0 -> 1138 bytes .../DeltaV/Objects/Storage/keg.rsi/base.png | Bin 0 -> 4087 bytes .../DeltaV/Objects/Storage/keg.rsi/meta.json | 15 ++ 10 files changed, 299 insertions(+) create mode 100644 Resources/Prototypes/DeltaV/Entities/Structures/Storage/Crates/barrel.yml create mode 100644 Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/barrel.yml create mode 100644 Resources/Prototypes/DeltaV/Recipes/Crafting/barrel.yml create mode 100644 Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/base.png create mode 100644 Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/closed.png create mode 100644 Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/open.png create mode 100644 Resources/Textures/DeltaV/Objects/Storage/keg.rsi/base.png create mode 100644 Resources/Textures/DeltaV/Objects/Storage/keg.rsi/meta.json diff --git a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_food.yml b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_food.yml index f8645aa058a..f1752e3bb85 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_food.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_food.yml @@ -57,3 +57,33 @@ cost: 1500 category: Food group: market + +- type: cargoProduct + id: FoodBeerKeg + icon: + sprite: DeltaV/Objects/Storage/keg.rsi + state: base + product: WoodenKegBeer + cost: 500 + category: Food + group: market + +- type: cargoProduct + id: FoodRootBeerKeg + icon: + sprite: DeltaV/Objects/Storage/keg.rsi + state: base + product: WoodenKegRootBeer + cost: 500 + category: Food + group: market + +- type: cargoProduct + id: FoodWineBarrel + icon: + sprite: DeltaV/Objects/Storage/keg.rsi + state: base + product: WoodenKegWine + cost: 500 + category: Food + group: market \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Storage/Crates/barrel.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Storage/Crates/barrel.yml new file mode 100644 index 00000000000..9910e13a25e --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Storage/Crates/barrel.yml @@ -0,0 +1,155 @@ +- type: entity + parent: CrateGeneric + id: WoodenBarrel + name: wooden barrel + description: A musty old wooden barrel. + components: + - type: Sprite + sprite: DeltaV/Objects/Storage/barrel.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - type: Icon + sprite: DeltaV/Objects/Storage/barrel.rsi + state: base + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 4 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Construction + graph: WoodenBarrel + node: woodenbarrel + containers: + - entity_storage + - type: StaticPrice + price: 50 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.3,0.2,0.4" + density: 150 + mask: + - SmallMobMask #this is so they can go under plastic flaps + layer: + - MachineLayer + - type: Climbable + +- type: entity + parent: StorageTank + id: WoodenKeg + name: wooden keg + description: A musty old wooden keg, with a tap attached to the front. + components: + - type: SolutionContainerManager + solutions: + tank: + maxVol: 500 + canMix: true + - type: ExaminableSolution + solution: tank + - type: UserInterface + interfaces: + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface + - type: DrawableSolution + solution: tank + - type: InjectableSolution + solution: tank + - type: Drink + solution: tank + - type: Spillable + solution: tank + - type: DumpableSolution + solution: tank + - type: Sprite + sprite: DeltaV/Objects/Storage/keg.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: Wood + - type: StaticPrice + price: 50 + - type: Construction + graph: WoodenKeg + node: woodenkeg + containers: + - entity_storage + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.3,0.2,0.4" + density: 200 + mask: + - SmallMobMask #this is so they can go under plastic flaps + layer: + - MachineLayer + - type: Transform + noRot: false + +- type: entity + parent: WoodenKeg + name: root beer keg + description: A musty old wooden keg, with a tap attached to the front. Smells like root beer. + id: WoodenKegRootBeer + components: + - type: Label + currentLabel: reagent-name-root-beer + - type: SolutionContainerManager + solutions: + tank: + reagents: + - ReagentId: RootBeer + Quantity: 500 + +- type: entity + parent: WoodenKeg + name: beer keg + description: A musty old wooden keg, with a tap attached to the front. Smells like beer. + id: WoodenKegBeer + components: + - type: Label + currentLabel: reagent-name-beer + - type: SolutionContainerManager + solutions: + tank: + reagents: + - ReagentId: Beer + Quantity: 500 + +- type: entity + parent: WoodenKeg + name: wine keg + description: A musty old wooden keg, with a tap attached to the front. Smells like wine. + id: WoodenKegWine + components: + - type: Label + currentLabel: reagent-name-wine + - type: SolutionContainerManager + solutions: + tank: + reagents: + - ReagentId: Wine + Quantity: 500 diff --git a/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/barrel.yml b/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/barrel.yml new file mode 100644 index 00000000000..70476578317 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Crafting/Graphs/barrel.yml @@ -0,0 +1,54 @@ +- type: constructionGraph + id: WoodenBarrel + start: start + graph: + - node: start + edges: + - to: woodenbarrel + steps: + - material: WoodPlank + amount: 5 + doAfter: 5 + + - node: woodenbarrel + entity: WoodenBarrel + edges: + - to: start + steps: + - tool: Prying + doAfter: 2 + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 5 + - !type:EmptyAllContainers + - !type:DeleteEntity + +- type: constructionGraph + id: WoodenKeg + start: start + graph: + - node: start + edges: + - to: woodenkeg + steps: + - material: WoodPlank + amount: 5 + doAfter: 5 + + - node: woodenkeg + entity: WoodenKeg + edges: + - to: start + steps: + - tool: Prying + doAfter: 2 + conditions: + - !type:SolutionEmpty + solution: tank + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 5 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/DeltaV/Recipes/Crafting/barrel.yml b/Resources/Prototypes/DeltaV/Recipes/Crafting/barrel.yml new file mode 100644 index 00000000000..a673b1215bb --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Crafting/barrel.yml @@ -0,0 +1,25 @@ +- type: construction + name: wooden barrel + id: WoodenBarrel + graph: WoodenBarrel + startNode: start + targetNode: woodenbarrel + category: construction-category-storage + description: A musty old wooden barrel. + icon: + sprite: DeltaV/Objects/Storage/barrel.rsi + state: base + objectType: Structure + +- type: construction + name: wooden keg + id: WoodenKeg + graph: WoodenKeg + startNode: start + targetNode: woodenkeg + category: construction-category-storage + description: A musty old wooden keg, with a tap attached to the front. + icon: + sprite: DeltaV/Objects/Storage/keg.rsi + state: base + objectType: Structure diff --git a/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/base.png b/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc92c166d4378a6145536c6386dd95e55c9ea7f GIT binary patch literal 1138 zcmV-&1daQNP)YAX9X8WNB|8RBvx=!KdMT000C1 zNkl*{Q&wL`~LRvcaw=0y=i5FNt2 z6}<4q8xizEuXZ!WypvuC_M%jZMb?6`!rCp9cG)UPld{C5Uon|!(vRas$T8`blaDIH z=juJ@JTK4hJnwrruSS+-o@HqMcYya^>{gv{xtV0GE81UeBHvnMk77#jZ zL|0<~%uNQlefvHD-`)vT1gQvc$z_#aJO4axcLUe1dsTCQ_x&Q5vl-d&vT5P)bsKiPCoi@ylnA&MD{dH-yCCZGRVY(H1VaoM+3Os4ZQu? zt*7Rdicd#e>^GV5?F#%l`F(8w$*f~w>;o+RALt%z$JQ+{^6t25;pv-W#8#sC{X6(} z1>)W*0-KrI0OwCOVKwRr3&RWz4Ut}$!0m3p)-3=ablQsML|0?XO$O2Tk1{_$j~Ml` zd9cS%iyPGgOeT{oiXDu$XIThrBev?;alMMe;Q+vHw-@C{A`$F%JCR6)*vvO92b1)k zHuHO;jrj-5Boc}00eyXaNRmX{JB72;!2aW10G5MEPC1Q5`G@a?*E76%`2w@v7!!Bz z)CM?b(~=TAbaizxI5^0oiLaGz9BVudfVr+-nX?esreA7C^THUR**T)=49@yB#+Q<{ z1NxY+IunY zYiRQrh;8Wr_{-)5U?;P~dVC!Kt^dcOC8-&3<^VJXo>*J4RfpB6FUpT6)51ftZPrN@Y3aG;*x*IKkDF>Js!z z&B{2H%CcqYARJz+9#Gf?R($lHHgm$HXUP{Y>PSBFZ=44#2a`w_M^*m=6#+!CgO(OE zk|fdiXs&2|3->```vY1x;Y5P1txeUpFAF$~0FWf9=((*e_dkgJ5o2$2lW-ydP*L%U z0q1O5Wjz4}Q!-Y37z|p~&#z)Y9&zR%H#Q16OyL0(D7u%7W>r7EssVWfK;Mbnu`GY| zl2f_o>sp!CtcH7ax$8=bR|Pl>DHW9#t{L!e$1?}~4bn|!-yh?@1poj507*qoM6N<$ Ef&g0-IRF3v literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/closed.png b/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..b111827b8e5ded4cdf0b14e4ed96426d126971bd GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?31We{epSZZGe6qGJ; zjVKAuPb(=;EJ|f?PR%K?Mkcif|m#w)DIS4d7 zv~P915aGeH+SO4yy80snWBzkbn}#y8uxVV4Ax-|1+_pq;dm1bjA1_qV_#utx|9t_`@bP?!N22WQ%mvv4FO#mcBf<^!U literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/meta.json new file mode 100644 index 00000000000..03a01149a2a --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation PR https://github.com/tgstation/tgstation/pull/38977, modified by rosieposieeee", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "open" + }, + { + "name": "closed" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/open.png b/Resources/Textures/DeltaV/Objects/Storage/barrel.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc92c166d4378a6145536c6386dd95e55c9ea7f GIT binary patch literal 1138 zcmV-&1daQNP)YAX9X8WNB|8RBvx=!KdMT000C1 zNkl*{Q&wL`~LRvcaw=0y=i5FNt2 z6}<4q8xizEuXZ!WypvuC_M%jZMb?6`!rCp9cG)UPld{C5Uon|!(vRas$T8`blaDIH z=juJ@JTK4hJnwrruSS+-o@HqMcYya^>{gv{xtV0GE81UeBHvnMk77#jZ zL|0<~%uNQlefvHD-`)vT1gQvc$z_#aJO4axcLUe1dsTCQ_x&Q5vl-d&vT5P)bsKiPCoi@ylnA&MD{dH-yCCZGRVY(H1VaoM+3Os4ZQu? zt*7Rdicd#e>^GV5?F#%l`F(8w$*f~w>;o+RALt%z$JQ+{^6t25;pv-W#8#sC{X6(} z1>)W*0-KrI0OwCOVKwRr3&RWz4Ut}$!0m3p)-3=ablQsML|0?XO$O2Tk1{_$j~Ml` zd9cS%iyPGgOeT{oiXDu$XIThrBev?;alMMe;Q+vHw-@C{A`$F%JCR6)*vvO92b1)k zHuHO;jrj-5Boc}00eyXaNRmX{JB72;!2aW10G5MEPC1Q5`G@a?*E76%`2w@v7!!Bz z)CM?b(~=TAbaizxI5^0oiLaGz9BVudfVr+-nX?esreA7C^THUR**T)=49@yB#+Q<{ z1NxY+IunY zYiRQrh;8Wr_{-)5U?;P~dVC!Kt^dcOC8-&3<^VJXo>*J4RfpB6FUpT6)51ftZPrN@Y3aG;*x*IKkDF>Js!z z&B{2H%CcqYARJz+9#Gf?R($lHHgm$HXUP{Y>PSBFZ=44#2a`w_M^*m=6#+!CgO(OE zk|fdiXs&2|3->```vY1x;Y5P1txeUpFAF$~0FWf9=((*e_dkgJ5o2$2lW-ydP*L%U z0q1O5Wjz4}Q!-Y37z|p~&#z)Y9&zR%H#Q16OyL0(D7u%7W>r7EssVWfK;Mbnu`GY| zl2f_o>sp!CtcH7ax$8=bR|Pl>DHW9#t{L!e$1?}~4bn|!-yh?@1poj507*qoM6N<$ Ef&g0-IRF3v literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Storage/keg.rsi/base.png b/Resources/Textures/DeltaV/Objects/Storage/keg.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..05686978222cf81f73140592730be7bb6c48dcea GIT binary patch literal 4087 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Storage/keg.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Storage/keg.rsi/meta.json new file mode 100644 index 00000000000..cbbc0d6e89f --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Storage/keg.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by rosieposieeee", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base", + "directions": 4 + } + ] +}