This commit is contained in:
Martin 2022-12-20 11:51:04 +01:00
parent 0cd9006ac0
commit 8d953ec9f6
3 changed files with 8 additions and 3 deletions

View File

@ -172,7 +172,7 @@
{
"id": "CircleEnemy",
"moveType": "Follow",
"graphicsType": "Bat",
"graphicsType": "Skeleton",
"health": 4,
"damage": 1,
"speed": 25,
@ -205,7 +205,7 @@
{
"id": "WaveEnemyArmor",
"moveType": "Launch",
"graphicsType": "Bat",
"graphicsType": "Skeleton",
"health": 5,
"damage": 3,
"speed": 70,

View File

@ -1083,6 +1083,10 @@
{
"__uuid__": "6135fac4-6678-4e23-b655-b4ff7fb42026",
"__expectedType__": "cc.Prefab"
},
{
"__uuid__": "b33ee875-cfd1-4f95-9f20-c2a7c3ca9ccf",
"__expectedType__": "cc.Prefab"
}
],
"_id": "ebqmDEqu5OGJivYBW47skm"

View File

@ -1,5 +1,6 @@
export enum EnemyGraphicsType {
Bat = "Bat",
Goblin = "Goblin",
Shark = "Shark"
Shark = "Shark",
Skeleton = "Skeleton"
}