diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml index dc4423710b..4bf46143d1 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml @@ -308,3 +308,65 @@ Quantity: 1 - ReagentId: Vitamin Quantity: 1 + +- type: entity + id: CP14FoodApple + parent: FoodInjectableBase + categories: [ ForkFiltered ] + name: apple + description: A fruit for lovers of a quick snack. + components: + - type: Item + size: Tiny + - type: FlavorProfile + flavors: + - apple + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Vitamin + Quantity: 4 + - type: Sprite + sprite: _CP14/Objects/Flora/Farm/apple.rsi + layers: + - state: base1 + - type: Extractable + juiceSolution: + reagents: + - ReagentId: JuiceApple + Quantity: 12 + - type: SliceableFood + count: 4 + sliceTime: 1.5 + slice: CP14FoodAppleSlice + +- type: entity + id: CP14FoodAppleSlice + parent: FoodInjectableBase + categories: [ ForkFiltered ] + name: apple slice + description: Small slices to eat at one time. + components: + - type: Item + size: Tiny + - type: FlavorProfile + flavors: + - apple + - type: Sprite + sprite: _CP14/Objects/Flora/Farm/apple.rsi + layers: + - state: slice1 + - type: SolutionContainerManager + solutions: + food: + maxVol: 4 + reagents: + - ReagentId: Nutriment + Quantity: 2.5 + - ReagentId: Vitamin + Quantity: 1 + \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/base1.png b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/base1.png new file mode 100644 index 0000000000..5853f0bfd0 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/base1.png differ diff --git a/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/meta.json new file mode 100644 index 0000000000..12d7b3ff2d --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CLA", + "copyright": "Created by artista.rar_furrista (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base1" + }, + { + "name": "slice1" + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/slice1.png b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/slice1.png new file mode 100644 index 0000000000..34f7b6a5a2 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Flora/Farm/apple.rsi/slice1.png differ