-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🆑 - add: Nitrous oxide tanks are now in surgical bags. - add: Added the advanced microwave. - add: Added the bloodloss cryo chems, hemoxadone and cynoxadone - tweak: Doubled how much chef gets of certain ChefVend items, such as flour, sugar, rice, and cornmeal.
- Loading branch information
Showing
23 changed files
with
223 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
reagent-name-hemoxadone = hemoxadone | ||
reagent-desc-hemoxadone = A cryogenics chemical. Used to treat severe blood loss by regenerating red blood cells and promoting reperfusion. Works regardless of the patient being alive or dead. | ||
reagent-name-cyanoxadone = cyanoxadone | ||
reagent-desc-cyanoxadone = A cryogenics chemical. Used to treat severe blood loss in blue-blooded creatures by regenerating hemocyanin and promoting reperfusion. Works regardless of the patient being alive or dead. |
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
25 changes: 25 additions & 0 deletions
25
Resources/Prototypes/DeltaV/Entities/Structures/Machines/advanced_microwave.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,25 @@ | ||
- type: entity | ||
parent: KitchenMicrowave | ||
id: AdvancedMicrowave | ||
name: Advanced Microwave | ||
description: Don't stand too close to this thing, definitely dont put anything metal in. | ||
components: | ||
- type: Microwave | ||
cookTimeMultiplier: 0.5 | ||
capacity: 30 | ||
canMicrowaveIdsSafely: false # No AA farm | ||
- type: Sprite | ||
sprite: _DV/Structures/Machines/advanced_microwave.rsi | ||
- type: Machine | ||
board: AdvancedMicrowaveMachineCircuitBoard | ||
- type: Explosive | ||
explosionType: Radioactive | ||
maxIntensity: 60 | ||
totalIntensity: 50 | ||
intensitySlope: 10 | ||
canCreateVacuum: false | ||
deleteAfterExplosion: false | ||
- type: FoodRecipeProvider | ||
providedRecipes: # if any new unique foods get added this will need updating | ||
- RecipeBaguetteSword | ||
- RecipeThrowingCroissant |
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,81 @@ | ||
- type: reagent | ||
id: Hemoxadone | ||
name: reagent-name-hemoxadone | ||
group: Medicine | ||
desc: reagent-desc-hemoxadone | ||
physicalDesc: reagent-physical-desc-metallic | ||
flavor: medicine | ||
color: "#ee0044" | ||
worksOnTheDead: true | ||
metabolisms: | ||
Poison: | ||
effects: | ||
- !type:HealthChange | ||
conditions: | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: true | ||
damage: | ||
types: | ||
Poison: 2 | ||
Medicine: | ||
effects: | ||
- !type:HealthChange | ||
conditions: | ||
- !type:Temperature | ||
max: 213.0 | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: false | ||
damage: | ||
types: | ||
Bloodloss: -6 | ||
- !type:ModifyBloodLevel | ||
conditions: | ||
- !type:Temperature | ||
max: 213.0 | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: false | ||
amount: 6 | ||
|
||
- type: reagent | ||
id: Cyanoxadone | ||
name: reagent-name-cyanoxadone | ||
group: Medicine | ||
desc: reagent-desc-cyanoxadone | ||
physicalDesc: reagent-physical-desc-metallic | ||
flavor: medicine | ||
color: "#00eeff" | ||
worksOnTheDead: true | ||
metabolisms: | ||
Poison: | ||
effects: | ||
- !type:HealthChange | ||
conditions: | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: false | ||
damage: | ||
types: | ||
Poison: 2 | ||
Medicine: | ||
effects: | ||
- !type:HealthChange | ||
conditions: | ||
- !type:Temperature | ||
max: 213.0 | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: true | ||
damage: | ||
types: | ||
Bloodloss: -6 | ||
- !type:ModifyBloodLevel | ||
conditions: | ||
- !type:Temperature | ||
max: 213.0 | ||
- !type:OrganType | ||
type: Arachnid | ||
shouldHave: true | ||
amount: 6 |
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
27 changes: 27 additions & 0 deletions
27
Resources/Prototypes/DeltaV/Recipes/Reactions/medicine.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,27 @@ | ||
- type: reaction | ||
id: Hemoxadone | ||
minTemp: 370 | ||
reactants: | ||
Iron: | ||
amount: 2 | ||
Traumoxadone: | ||
amount: 1 | ||
Blood: | ||
amount: 1 | ||
catalyst: true | ||
products: | ||
Hemoxadone: 2 | ||
|
||
- type: reaction | ||
id: Cyanoxadone | ||
minTemp: 370 | ||
reactants: | ||
Copper: | ||
amount: 2 | ||
Traumoxadone: | ||
amount: 1 | ||
CopperBlood: | ||
amount: 1 | ||
catalyst: true | ||
products: | ||
Cyanoxadone: 2 |
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
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
12 changes: 12 additions & 0 deletions
12
Resources/Prototypes/_DV/Entities/Objects/Devices/CircuitBoards/Machine/production.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,12 @@ | ||
- type: entity | ||
parent: MicrowaveMachineCircuitboard | ||
id: AdvancedMicrowaveMachineCircuitBoard | ||
name: advanced microwave machine board | ||
components: | ||
- type: MachineBoard | ||
prototype: AdvancedMicrowave | ||
requirements: | ||
Capacitor: 2 | ||
materialRequirements: | ||
Glass: 4 | ||
Cable: 5 |
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
41 changes: 41 additions & 0 deletions
41
Resources/Textures/_DV/Structures/Machines/advanced_microwave.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,41 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Taken from /tg/station at commit 9065b811726ae52be5d1889f436c01a24efbf47a, edited by github user @Flareguy for Space Station 14, edited by github user Stop-Signs for DeltaV", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "mw" | ||
}, | ||
{ | ||
"name": "mw_unlit" | ||
}, | ||
{ | ||
"name": "mw0" | ||
}, | ||
{ | ||
"name": "mw_running_unlit" | ||
}, | ||
{ | ||
"name": "mwb" | ||
}, | ||
{ | ||
"name": "mwbloody" | ||
}, | ||
{ | ||
"name": "mwbloody0" | ||
}, | ||
{ | ||
"name": "mwbloody1" | ||
}, | ||
{ | ||
"name": "mwbloodyo" | ||
}, | ||
{ | ||
"name": "mwo" | ||
} | ||
] | ||
} |
Binary file added
BIN
+432 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mw.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
+423 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mw0.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
+276 Bytes
...es/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mw_running_unlit.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.73 KB
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mw_unlit.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
+825 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwb.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
+603 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwbloody.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
+268 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwbloody0.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
+230 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwbloody1.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
+723 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwbloodyo.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
+543 Bytes
Resources/Textures/_DV/Structures/Machines/advanced_microwave.rsi/mwo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.