-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into logitechdrip
- Loading branch information
Showing
22 changed files
with
260 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flavor-complex-cigarettes = like cigarettes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
102 changes: 102 additions & 0 deletions
102
Resources/Prototypes/_DV/Entities/Objects/Decoration/meat.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
- type: entity | ||
id: MeatDecorBase | ||
abstract: true | ||
components: | ||
- type: Sprite | ||
sprite: _DV/Objects/Decoration/Flesh/meat.rsi | ||
noRot: false | ||
state: teeth1 | ||
- type: Damageable | ||
damageContainer: StructuralInorganic | ||
damageModifierSet: Wood | ||
- type: MeleeSound | ||
soundGroups: | ||
Brute: | ||
path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg | ||
params: | ||
variation: 0.05 | ||
- type: Destructible | ||
thresholds: | ||
- trigger: | ||
!type:DamageTrigger | ||
damage: 5 | ||
behaviors: | ||
- !type:PlaySoundBehavior | ||
sound: | ||
collection: gib | ||
- !type:DoActsBehavior | ||
acts: [ "Destruction" ] | ||
- !type:SpawnEntitiesBehavior | ||
spawn: | ||
FoodMeat: | ||
min: 1 | ||
max: 1 | ||
|
||
- type: entity | ||
id: FleshTeethBase | ||
name: flesh teeth | ||
description: Tooth-like protrusions. | ||
parent: [MeatDecorBase, BaseRock] | ||
abstract: true | ||
|
||
- type: entity | ||
parent: FleshTeethBase | ||
id: FleshTeeth1 | ||
components: | ||
- type: Sprite | ||
state: teeth1 | ||
|
||
- type: entity | ||
parent: FleshTeethBase | ||
id: FleshTeeth2 | ||
components: | ||
- type: Sprite | ||
state: teeth2 | ||
|
||
- type: entity | ||
parent: FleshTeethBase | ||
id: FleshTeeth3 | ||
components: | ||
- type: Sprite | ||
state: teeth3 | ||
|
||
- type: entity | ||
parent: [MeatDecorBase, BaseSign] | ||
id: MeatWallMouth | ||
name: wall mouth | ||
description: It hungers. | ||
components: | ||
- type: Sprite | ||
noRot: true | ||
snapCardinals: false | ||
state: wallmouth | ||
|
||
- type: entity | ||
parent: [MeatDecorBase, BaseSign] | ||
id: MeatWhisperers | ||
name: whisperers | ||
description: It whispers. | ||
placement: | ||
mode: SnapgridBorder | ||
components: | ||
- type: Sprite | ||
noRot: true | ||
drawdepth: Overdoors | ||
snapCardinals: false | ||
sprite: _DV/Objects/Decoration/Flesh/bigmeat.rsi | ||
state: whisperers | ||
|
||
- type: entity | ||
parent: MeatDecorBase | ||
id: MeatFloorMouth | ||
name: floor mouth | ||
description: "It's starving." | ||
components: | ||
- type: Clickable | ||
- type: Tag | ||
tags: | ||
- Structure | ||
- type: Sprite | ||
drawdepth: FloorObjects | ||
sprite: _DV/Objects/Decoration/Flesh/bigmeat.rsi | ||
state: floormouth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
Resources/Prototypes/_Impstation/Entities/Objects/Consumable/Food/soup.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- type: entity | ||
parent: FoodBowlBase | ||
id: FoodCamelSoup | ||
name: one day blinding stew # DeltaV - name change | ||
description: the hospital can't stop me. I will never go. not with the strength I've obtained. | ||
components: | ||
- type: FlavorProfile | ||
flavors: | ||
- cigarettes | ||
- type: Sprite | ||
sprite: _Impstation/Objects/Consumable/Food/bowl.rsi | ||
layers: | ||
- state: bowl | ||
- state: camelsouplit #initial design was to let this be lit up like an actual cigarette but i decided i did not want to deal with that. if someone else wants to make it work please do, there are assets for this in bowl.rsi | ||
- type: SolutionContainerManager | ||
solutions: | ||
food: | ||
maxVol: 57 | ||
reagents: | ||
- ReagentId: TearGas | ||
Quantity: 40 | ||
- ReagentId: ChloralHydrate | ||
Quantity: 17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- type: flavor | ||
id: cigarettes | ||
flavorType: Complex | ||
description: flavor-complex-cigarettes |
9 changes: 9 additions & 0 deletions
9
Resources/Prototypes/_Impstation/Recipes/Cooking/meal_recipes.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- type: microwaveMealRecipe | ||
id: RecipeCamelSoup | ||
name: one day blinding stew recipe # DeltaV - name change | ||
result: FoodCamelSoup | ||
time: 15 | ||
solids: | ||
TearGasGrenade: 1 | ||
FoodBowlBig: 1 | ||
Cigarette: 8 #YUMMY!!!!!!!!! |
Binary file added
BIN
+3.87 KB
Resources/Textures/_DV/Objects/Decoration/Flesh/bigmeat.rsi/floormouth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
Resources/Textures/_DV/Objects/Decoration/Flesh/bigmeat.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "rosieposieeee (Github)", | ||
"size": { | ||
"x": 64, | ||
"y": 64 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "whisperers", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "floormouth" | ||
} | ||
] | ||
} |
Binary file added
BIN
+6.17 KB
Resources/Textures/_DV/Objects/Decoration/Flesh/bigmeat.rsi/whisperers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions
24
Resources/Textures/_DV/Objects/Decoration/Flesh/meat.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "rosieposieeee (Github)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "teeth1" | ||
}, | ||
{ | ||
"name": "teeth2" | ||
}, | ||
{ | ||
"name": "teeth3" | ||
}, | ||
{ | ||
"name": "wallmouth", | ||
"directions": 4 | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.89 KB
Resources/Textures/_DV/Objects/Decoration/Flesh/meat.rsi/wallmouth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+401 Bytes
Resources/Textures/_Impstation/Objects/Consumable/Food/bowl.rsi/bowl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+937 Bytes
Resources/Textures/_Impstation/Objects/Consumable/Food/bowl.rsi/camelsoup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.49 KB
Resources/Textures/_Impstation/Objects/Consumable/Food/bowl.rsi/camelsouplit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions
29
Resources/Textures/_Impstation/Objects/Consumable/Food/bowl.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "fills by Carousel. bowl is taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa.", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "camelsoup" | ||
}, | ||
{ | ||
"name": "camelsouplit", | ||
"delays": [ | ||
[ | ||
0.2, | ||
0.2, | ||
0.2, | ||
0.2 | ||
] | ||
] | ||
}, | ||
{ | ||
"name": "bowl", | ||
"directions": 1 | ||
} | ||
] | ||
} |