Merge pull request #1813 from oldschoolotaku/OH-GOD-IT-BURNS

Custom burning sprites
This commit is contained in:
nukkuminen
2025-09-30 15:02:49 +03:00
committed by GitHub
parent fe0853a1f3
commit bce80d4026
8 changed files with 59 additions and 2 deletions

View File

@@ -289,7 +289,9 @@
bloodReagent: CP14Blood
# Other
- type: FireVisuals
alternateState: Standing #TODO - custom visuals
sprite: _CP14/Mobs/Effects/onfire.rsi
normalState: Small_burning
alternateState: Humanoid_burning
- type: entity
save: false
@@ -361,4 +363,4 @@
- type: UserInterface
interfaces:
enum.HumanoidMarkingModifierKey.Key: # sure, this can go here too
type: HumanoidMarkingModifierBoundUserInterface
type: HumanoidMarkingModifierBoundUserInterface

View File

@@ -58,6 +58,8 @@
visible: false
- type: HumanoidAppearance
species: CP14Carcat
- type: FireVisuals
alternateState: Carcat_burning
- type: Icon
sprite: _CP14/Mobs/Species/Carcat/parts.rsi
state: full

View File

@@ -67,6 +67,8 @@
48:
sprite: _CP14/Mobs/Species/Goblin/displacement48.rsi
state: hair
- type: FireVisuals
alternateState: Goblin_burning
- type: Icon
sprite: _CP14/Mobs/Species/Goblin/parts.rsi
state: full

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@@ -0,0 +1,51 @@
{
"version": 1,
"size": {
"x": 48,
"y": 48
},
"license": "CC-BY-SA-3.0",
"copyright": "by TTTomaTTT (github) for CrystallEdge",
"states": [
{
"name": "Small_burning",
"directions": 4,
"delays": [
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ]
]
},
{
"name": "Humanoid_burning",
"directions": 4,
"delays": [
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ]
]
},
{
"name": "Goblin_burning",
"directions": 4,
"delays": [
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ]
]
},
{
"name": "Carcat_burning",
"directions": 4,
"delays": [
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ],
[ 0.3, 0.3, 0.3, 0.3 ]
]
}
]
}