This commit is contained in:
Rane
2022-02-10 17:15:06 -05:00
committed by GitHub
parent 65faa85620
commit 81c7a03c97
22 changed files with 502 additions and 2 deletions

View File

@@ -0,0 +1,50 @@
- type: entity
id: PartSilicon
parent: BaseItem
name: "silicon body part"
abstract: true
components:
- type: Damageable
damageContainer: Inorganic
- type: entity
id: LeftHandDrone
name: "left drone hand"
parent: PartSilicon
components:
- type: Sprite
netsync: false
sprite: Mobs/Silicon/drone.rsi
state: "l_hand"
- type: Icon
sprite: Mobs/Silicon/drone.rsi
state: "l_hand"
- type: BodyPart
partType: Hand
size: 3
compatibility: Biological ##Does this do anything? Revisit when surgery is in
symmetry: Left
- type: Tag
tags:
- Trash
- type: entity
id: RightHandDrone
name: "right drone hand"
parent: PartSilicon
components:
- type: Sprite
netsync: false
sprite: Mobs/Silicon/drone.rsi
state: "r_hand"
- type: Icon
sprite: Mobs/Silicon/drone.rsi
state: "r_hand"
- type: BodyPart
partType: Hand
size: 3
compatibility: Biological
symmetry: Right
- type: Tag
tags:
- Trash

View File

@@ -0,0 +1,10 @@
- type: bodyPreset
name: "drone"
id: DronePreset
partIDs:
hand 1: LeftHandDrone
hand 2: LeftHandDrone
hand 3: LeftHandDrone
hand 4: RightHandDrone
hand 5: RightHandDrone
hand 6: RightHandDrone

View File

@@ -0,0 +1,11 @@
- type: bodyTemplate
id: DroneTemplate
name: "drone"
centerSlot: "torso"
slots:
hand 1: hand
hand 2: hand
hand 3: hand
hand 4: hand
hand 5: hand
hand 6: hand