Add more assets for consideration

This commit is contained in:
koneko 2025-01-13 23:40:27 +01:00
parent 64a5bf35ab
commit 5bec27c545
12 changed files with 1 additions and 1 deletions

BIN
public/assets/gui/frame_blue.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
public/assets/gui/frame_c2_02.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
public/assets/gui/frame_c3_01.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
public/assets/gui/inventory.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 KiB

BIN
public/assets/gui/m_frame.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
public/assets/gui/note.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 KiB

BIN
public/assets/gui/plank_14.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
public/assets/gui/skull_01.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
public/assets/gui/slot_02.PNG Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
public/assets/gui/title.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

BIN
public/assets/gui/title01.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -78,7 +78,7 @@ export class Tower extends GameObject {
const towerY = this.row * Engine.GridCellSize + Engine.GridCellSize / 2; const towerY = this.row * Engine.GridCellSize + Engine.GridCellSize / 2;
const radius = this.definition.stats.range * Engine.GridCellSize; const radius = this.definition.stats.range * Engine.GridCellSize;
const d = distance(towerX, towerY, x, y); const d = distance(towerX, towerY, x, y);
return d < radius + Engine.GridCellSize; return d < radius + (Engine.GridCellSize * 2) / 3;
}); });
} }
public Shoot(creep: Creep) { public Shoot(creep: Creep) {