Fixed the stats system for the hostiles

This commit is contained in:
Robert MacRae 2026-04-02 10:07:38 -03:00
parent fea891678e
commit 7ab64992a4
5 changed files with 15 additions and 15 deletions

View File

@ -2,12 +2,12 @@
"hostile": { "hostile": {
"id": "original:pirates/black_mark_cruiser", "id": "original:pirates/black_mark_cruiser",
"displayName": "Black Mark Heavy Cruiser", "displayName": "Black Mark Heavy Cruiser",
"meta": { "stats": {
"health": 850, "health": 850,
"defense": 5.0, "defense": 5.0,
"damage": 18.0, "damage": 18.0,
"criticalChance": 0.15, "critical.chance": 0.15,
"attackRate": 0.6 "attack.rate": 0.6
} }
} }
} }

View File

@ -2,12 +2,12 @@
"hostile": { "hostile": {
"id": "original:pirates/raider_frigate", "id": "original:pirates/raider_frigate",
"displayName": "Raider Frigate", "displayName": "Raider Frigate",
"meta": { "stats": {
"health": 110, "health": 110,
"defense": 1.5, "defense": 1.5,
"damage": 6.5, "damage": 6.5,
"criticalChance": 0.2, "critical.chance": 0.2,
"attackRate": 1.0 "attack.rate": 1.0
} }
} }
} }

View File

@ -2,12 +2,12 @@
"hostile": { "hostile": {
"id": "original:pirates/scout_drone", "id": "original:pirates/scout_drone",
"displayName": "Pirate Scout Drone", "displayName": "Pirate Scout Drone",
"meta": { "stats": {
"health": 25, "health": 25,
"defense": 0.2, "defense": 0.2,
"damage": 1.8, "damage": 1.8,
"criticalChance": 0.1, "critical.chance": 0.1,
"attackRate": 3.0 "attack.rate": 3.0
} }
} }
} }

View File

@ -2,12 +2,12 @@
"hostile": { "hostile": {
"id": "original:tutorial/tutorial_boss_hostile", "id": "original:tutorial/tutorial_boss_hostile",
"displayName": "enemies.original.tutorial.tutorial_boss_hostile", "displayName": "enemies.original.tutorial.tutorial_boss_hostile",
"meta": { "stats": {
"health": 90, "health": 90,
"defense": 1.3, "defense": 1.3,
"damage": 4.1, "damage": 4.1,
"criticalChance": 0.3, "critical.chance": 0.3,
"attackRate": 2 "attack.rate": 2
} }
} }
} }

View File

@ -2,12 +2,12 @@
"hostile": { "hostile": {
"id": "original:tutorial/tutorial_hostile", "id": "original:tutorial/tutorial_hostile",
"displayName": "enemies.original.tutorial.tutorial_hostile", "displayName": "enemies.original.tutorial.tutorial_hostile",
"meta": { "stats": {
"health": 30, "health": 30,
"defense": 0.3, "defense": 0.3,
"damage": 2.1, "damage": 2.1,
"criticalChance": 0.3, "critical,chance": 0.3,
"attackRate": 2 "attack.rate": 2
} }
} }
} }