-
Notifications
You must be signed in to change notification settings - Fork 294
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
1 parent
b0c9f56
commit 7f6e725
Showing
5 changed files
with
119 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,69 @@ | ||
- type: entity | ||
name: space shrimp | ||
parent: [ SimpleMobBase, FlyingMobBase, MobCombat ] | ||
id: MobSpaceShrimp | ||
description: Shrimply cursed... | ||
suffix: METEM MACHINE ONLY #for now, only to be used as a very rare result for the metempsychosis machine. If fishing ever gets added, this suffix can be removed. | ||
components: | ||
- type: CombatMode | ||
- type: MeleeWeapon | ||
soundHit: | ||
path: /Audio/Effects/pop.ogg | ||
- type: MovementSpeedModifier | ||
baseWalkSpeed : 6 | ||
baseSprintSpeed : 6 | ||
- type: Sprite | ||
sprite: DeltaV/Mobs/Animals/shrimp.rsi | ||
layers: | ||
- map: ["enum.DamageStateVisualLayers.Base"] | ||
state: shrimp | ||
- type: Fixtures | ||
fixtures: | ||
fix1: | ||
shape: | ||
!type:PhysShapeCircle | ||
radius: 0.35 | ||
density: 100 | ||
mask: | ||
- FlyingMobMask | ||
layer: | ||
- FlyingMobLayer | ||
- type: Physics | ||
- type: DamageStateVisuals | ||
states: | ||
Alive: | ||
Base: shrimp | ||
Dead: | ||
Base: dead | ||
- type: Butcherable | ||
spawned: | ||
- id: FoodMeatCrab | ||
amount: 3 | ||
- type: Bloodstream | ||
bloodMaxVolume: 100 | ||
bloodReagent: BbqSauce #australia reference | ||
- type: InteractionPopup | ||
successChance: 0.5 | ||
interactSuccessString: petting-success-possum | ||
interactFailureString: petting-failure-possum | ||
interactSuccessSpawn: EffectHearts | ||
interactSuccessSound: | ||
path: /Audio/Animals/raccoon_chatter.ogg | ||
- type: Speech | ||
speechSounds: Slime | ||
- type: Puller | ||
needsHands: false | ||
- type: MindContainer | ||
showExamineInfo: true | ||
- type: PotentialPsionic | ||
- type: Psionic | ||
removable: false | ||
- type: PyrokinesisPower | ||
- type: NpcFactionMember | ||
factions: | ||
- Passive | ||
- type: Body | ||
prototype: Animal | ||
- type: HTN | ||
rootTask: | ||
task: SimpleHostileCompound |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions
49
Resources/Textures/DeltaV/Mobs/Animals/shrimp.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,49 @@ | ||
{ | ||
"version": 1, | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Sprite by Leonardo-DaBepis", | ||
"states": [ | ||
{ | ||
"name": "shrimp", | ||
"directions": 4, | ||
"delays": [ | ||
[ | ||
0.3, | ||
0.4, | ||
0.5, | ||
0.3 | ||
], | ||
[ | ||
0.3, | ||
0.4, | ||
0.5, | ||
0.3 | ||
], | ||
[ | ||
0.3, | ||
0.4, | ||
0.5, | ||
0.3 | ||
], | ||
[ | ||
0.3, | ||
0.4, | ||
0.5, | ||
0.3 | ||
] | ||
] | ||
}, | ||
{ | ||
"name": "dead", | ||
"delays": [ | ||
[ | ||
1 | ||
] | ||
] | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.