-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
792 additions
and
0 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,13 @@ | ||
species-name-drask = Драск | ||
marking-DraskArmRight = правая рука | ||
marking-DraskArmLeft = левая рука | ||
ent-OrganDraskEyes = глаза | ||
.desc = Я тебя вижу! | ||
ent-OrganDraskLungs = лёгкие | ||
.desc = Фильтрует кислород из атмосферы, который затем поступает в кровь для использования в качестве переносчика электронов. | ||
ent-OrganDraskHeart = сердце | ||
.desc = Мне жаль того бессердечного ублюдка, который его потерял. | ||
ent-OrganDraskInnards = внутренности | ||
.desc = Мерзость. | ||
ent-OrganDraskKidneys = почки | ||
.desc = Выводят токсины из кровеносной системы. |
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,103 @@ | ||
- type: entity | ||
id: OrganDraskEyes | ||
parent: BaseHumanOrgan | ||
suffix: "drask" | ||
name: eyes | ||
description: "I see you!" | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Mobs/Drask/organs.rsi | ||
state: eyes | ||
|
||
- type: entity | ||
id: OrganDraskLungs | ||
parent: BaseHumanOrgan | ||
suffix: "drask" | ||
name: lungs | ||
description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Mobs/Drask/organs.rsi | ||
state: lungs | ||
- type: Lung | ||
- type: Metabolizer | ||
removeEmpty: true | ||
solutionOnBody: false | ||
solution: "Lung" | ||
metabolizerTypes: [ Human ] | ||
groups: | ||
- id: Gas | ||
rateModifier: 100.0 | ||
- type: SolutionContainerManager | ||
solutions: | ||
organ: | ||
reagents: | ||
- ReagentId: Nutriment | ||
Quantity: 10 | ||
Lung: | ||
maxVol: 100.0 | ||
canReact: false | ||
food: | ||
maxVol: 5 | ||
reagents: | ||
- ReagentId: UncookedAnimalProteins | ||
Quantity: 5 | ||
|
||
- type: entity | ||
id: OrganDraskHeart | ||
parent: BaseHumanOrgan | ||
suffix: "drask" | ||
name: heart | ||
description: "I feel bad for the heartless bastard who lost this." | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Mobs/Drask/organs.rsi | ||
state: heart_on | ||
- type: Metabolizer | ||
maxReagents: 2 | ||
metabolizerTypes: [Drask] | ||
groups: | ||
- id: Medicine | ||
- id: Poison | ||
- id: Narcotic | ||
|
||
- type: entity | ||
id: OrganDraskInnards | ||
parent: BaseHumanOrgan | ||
suffix: "drask" | ||
name: innards | ||
description: "Ew innards." | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Mobs/Drask/organs.rsi | ||
state: innards | ||
- type: SolutionContainerManager | ||
solutions: | ||
stomach: | ||
maxVol: 50 | ||
food: | ||
maxVol: 5 | ||
reagents: | ||
- ReagentId: UncookedAnimalProteins | ||
Quantity: 5 | ||
- type: Stomach | ||
- type: Metabolizer | ||
maxReagents: 3 | ||
metabolizerTypes: [Drask] | ||
groups: | ||
- id: Food | ||
- id: Drink | ||
|
||
- type: entity | ||
id: OrganDraskKidneys | ||
parent: BaseHumanOrgan | ||
suffix: "drask" | ||
name: kidneys | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Mobs/Drask/organs.rsi | ||
state: kidneys | ||
- type: Metabolizer | ||
maxReagents: 5 | ||
metabolizerTypes: [Drask] | ||
removeEmpty: true |
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,190 @@ | ||
# TODO: Add descriptions (many) | ||
# TODO BODY: Part damage | ||
- type: entity | ||
id: PartDrask | ||
parent: BaseItem | ||
name: "drask body part" | ||
abstract: true | ||
components: | ||
- type: Damageable | ||
damageContainer: Biological | ||
- type: BodyPart | ||
- type: ContainerContainer | ||
containers: | ||
bodypart: !type:Container | ||
ents: [] | ||
|
||
- type: entity | ||
id: TorsoDrask | ||
name: "drask torso" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "torso_m" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "torso_m" | ||
- type: BodyPart | ||
partType: Torso | ||
|
||
- type: entity | ||
id: HeadDrask | ||
name: "drask head" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "head_m" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "head_m" | ||
- type: BodyPart | ||
partType: Head | ||
vital: true | ||
- type: Input | ||
context: "ghost" | ||
- type: MovementSpeedModifier | ||
baseWalkSpeed: 0 | ||
baseSprintSpeed: 0 | ||
- type: InputMover | ||
- type: GhostOnMove | ||
- type: Tag | ||
tags: | ||
- Head | ||
|
||
- type: entity | ||
id: LeftArmDrask | ||
name: "left drask arm" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_arm" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_arm" | ||
- type: BodyPart | ||
partType: Arm | ||
symmetry: Left | ||
|
||
- type: entity | ||
id: RightArmDrask | ||
name: "right drask arm" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_arm" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_arm" | ||
- type: BodyPart | ||
partType: Arm | ||
symmetry: Right | ||
|
||
- type: entity | ||
id: LeftHandDrask | ||
name: "left drask hand" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_hand" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_hand" | ||
- type: BodyPart | ||
partType: Hand | ||
symmetry: Left | ||
|
||
- type: entity | ||
id: RightHandDrask | ||
name: "right drask hand" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_hand" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_hand" | ||
- type: BodyPart | ||
partType: Hand | ||
symmetry: Right | ||
|
||
- type: entity | ||
id: LeftLegDrask | ||
name: "left drask leg" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_leg" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_leg" | ||
- type: BodyPart | ||
partType: Leg | ||
symmetry: Left | ||
- type: MovementBodyPart | ||
walkSpeed : 2.5 | ||
sprintSpeed : 4.5 | ||
|
||
- type: entity | ||
id: RightLegDrask | ||
name: "right drask leg" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_leg" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_leg" | ||
- type: BodyPart | ||
partType: Leg | ||
symmetry: Right | ||
- type: MovementBodyPart | ||
walkSpeed : 2.5 | ||
sprintSpeed : 4.5 | ||
|
||
- type: entity | ||
id: LeftFootDrask | ||
name: "left drask foot" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_foot" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "l_foot" | ||
- type: BodyPart | ||
partType: Foot | ||
symmetry: Left | ||
|
||
- type: entity | ||
id: RightFootDrask | ||
name: "right drask foot" | ||
parent: PartDrask | ||
components: | ||
- type: Sprite | ||
netsync: false | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_foot" | ||
- type: Icon | ||
sprite: ADT/Mobs/Drask/parts.rsi | ||
state: "r_foot" | ||
- type: BodyPart | ||
partType: Foot | ||
symmetry: Right |
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,49 @@ | ||
- type: body | ||
name: "drask" | ||
id: Drask | ||
root: torso | ||
slots: | ||
head: | ||
part: HeadDrask | ||
connections: | ||
- torso | ||
organs: | ||
brain: OrganHumanBrain | ||
eyes: OrganDraskEyes | ||
heart: OrganDraskHeart | ||
torso: | ||
part: TorsoDrask | ||
organs: | ||
lungs: OrganDraskLungs | ||
stomach: OrganDraskInnards | ||
liver: OrganHumanLiver | ||
kidneys: OrganDraskKidneys | ||
connections: | ||
- left arm | ||
- right arm | ||
- left leg | ||
- right leg | ||
right arm: | ||
part: RightArmDrask | ||
connections: | ||
- right hand | ||
left arm: | ||
part: LeftArmDrask | ||
connections: | ||
- left hand | ||
right hand: | ||
part: RightHandDrask | ||
left hand: | ||
part: LeftHandDrask | ||
right leg: | ||
part: RightLegDrask | ||
connections: | ||
- right foot | ||
left leg: | ||
part: LeftLegDrask | ||
connections: | ||
- left foot | ||
right foot: | ||
part: RightFootDrask | ||
left foot: | ||
part: LeftFootDrask |
Oops, something went wrong.