forked from impstation/imp-station-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request impstation#1821 from honeyed-lemons/synthflesh
Synthflesh
- Loading branch information
Showing
11 changed files
with
174 additions
and
3 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
5 changes: 4 additions & 1 deletion
5
Resources/Locale/en-US/_Impstation/reagents/meta/biological.ftl
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
reagent-name-dino-blood = dinosaur blood | ||
reagent-desc-dino-blood = The thick, viscous lifeblood of a prehistoric behemoth. You can almost sense the raw power coursing through it. | ||
reagent-desc-dino-blood = The thick, viscous lifeblood of a prehistoric behemoth. You can almost sense the raw power coursing through it. | ||
reagent-name-synthflesh = synthflesh | ||
reagent-desc-synthflesh = An incredibly thick, viscous, 'fluid' that moves and shifts on its own. It's used in the creation of synthetic limbs. |
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
59 changes: 59 additions & 0 deletions
59
Resources/Prototypes/_Impstation/Entities/Mobs/Animals/homunculus.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,59 @@ | ||
- type: entity | ||
name: homunculus | ||
parent: SimpleMobBase | ||
id: Homunculus | ||
description: A wet chunk of synthetic flesh. It's alive. | ||
components: | ||
- type: Item | ||
size: Normal | ||
- type: Sprite | ||
sprite: _Impstation/Mobs/Pets/homunculus.rsi/ | ||
state: homunculus | ||
- type: GhostTakeoverAvailable | ||
- type: GhostRole | ||
makeSentient: true | ||
allowSpeech: true | ||
allowMovement: true | ||
name: ghost-role-information-homunculus-name | ||
description: ghost-role-information-homunculus-description | ||
rules: ghost-role-information-familiar-rules | ||
mindRoles: | ||
- MindRoleGhostRoleFamiliar | ||
- type: Physics | ||
- type: UserInterface | ||
- type: Fixtures | ||
fixtures: | ||
fix1: | ||
shape: | ||
!type:PhysShapeCircle | ||
radius: 0.48 | ||
density: 1 | ||
mask: | ||
- MobMask | ||
layer: | ||
- MobLayer | ||
- type: Bloodstream | ||
bloodMaxVolume: 30 | ||
- type: MovementSpeedModifier | ||
baseWalkSpeed : 0.2 | ||
baseSprintSpeed : 0.3 | ||
- type: FootstepModifier | ||
footstepSoundCollection: | ||
path: /Audio/Effects/Footsteps/slime1.ogg | ||
params: | ||
volume: -6 | ||
- type: MobThresholds | ||
thresholds: | ||
0: Alive | ||
59: Dead | ||
- type: Tag | ||
tags: | ||
- FootstepSound | ||
- VimPilot | ||
- type: Vocal | ||
sounds: | ||
Male: MaleHuman | ||
Female: MaleHuman | ||
Unsexed: MaleHuman | ||
- type: Puller | ||
needsHands: false |
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
28 changes: 28 additions & 0 deletions
28
Resources/Prototypes/_Impstation/Recipes/Reactions/misc.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,28 @@ | ||
- type: reaction | ||
id: CreateSynthFlesh | ||
impact: Low | ||
quantized: true | ||
conserveEnergy: true | ||
reactants: | ||
Lacerinol: | ||
amount: 1 | ||
Blood: | ||
amount: 1 | ||
Saline: | ||
amount: 1 | ||
products: | ||
SynthFlesh: 3 | ||
|
||
- type: reaction | ||
id: CreateSynthFleshBlob | ||
impact: Low | ||
quantized: true | ||
conserveEnergy: false | ||
reactants: | ||
SynthFlesh: | ||
amount: 30 | ||
Cognizine: | ||
amount: 5 | ||
effects: | ||
- !type:CreateEntityReactionEffect | ||
entity: Homunculus |
Binary file added
BIN
+1.19 KB
Resources/Textures/_Impstation/Mobs/Pets/homunculus.rsi/homunculus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions
17
Resources/Textures/_Impstation/Mobs/Pets/homunculus.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,17 @@ | ||
{ | ||
"version": 1, | ||
"size": | ||
{ | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Sprited by honeyed_lemons_", | ||
"states": | ||
[ | ||
{ | ||
"name": "homunculus", | ||
"directions": 4 | ||
} | ||
] | ||
} |