Add kangaroos (#5829)

This commit is contained in:
metalgearsloth
2021-12-20 17:16:25 +11:00
committed by GitHub
parent c0d76a2243
commit ec626fa9d7
8 changed files with 69 additions and 0 deletions

View File

@@ -303,6 +303,43 @@
crit: dead crit: dead
dead: dead dead: dead
- type: entity
name: kangaroo
parent: SimpleMobBase
id: MobKangaroo
description: A large marsupial herbivore. It has powerful hind legs, with nails that resemble long claws.
components:
- type: MovementSpeedModifier
baseWalkSpeed: 4
baseSprintSpeed: 7
- type: Sprite
drawdepth: Mobs
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: kangaroo
sprite: Mobs/Animals/kangaroo.rsi
- type: Physics
- type: Fixtures
fixtures:
- shape:
!type:PhysShapeCircle
radius: 0.25
mass: 60
mask:
- Impassable
- MobImpassable #Bullets?!
- VaultImpassable
- SmallImpassable
layer:
- Opaque
- type: Appearance
visuals:
- type: DamageStateVisualizer
normal: kangaroo
# SKIPPY NO!
crit: kangaroo-dead
dead: kangaroo-dead
- type: entity - type: entity
name: monkey name: monkey
id: MobMonkey id: MobMonkey

Binary file not shown.

After

Width:  |  Height:  |  Size: 674 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,32 @@
{
"version": 1,
"size": {
"x": 32,
"y": 32
},
"license": "CC-BY-SA-3.0",
"copyright": "Taken from https://github.com/austation/austation/tree/30f0ba9c2dab3ec8e55ab6fae03bde1566a154ca",
"states": [
{
"name": "kangaroo",
"directions": 4
},
{
"name": "kangaroo-dead"
},
{
"name": "kangaroo-boxing",
"directions": 4
},
{
"name": "kangaroo-boxing-dead"
},
{
"name": "kangaroo-space",
"directions": 4
},
{
"name": "kangaroo-space-dead"
}
]
}