Initial commit: Arcanum TD — medieval fantasy tower defense

Vite + React + PixiJS + TypeScript. Features:
- 4-level campaign (King's Road → Obsidian Keep)
- Isometric 2.5D grid with ley-line mechanics
- ECS architecture (entities, components, systems)
- 4 tower types, hero spellcaster, 10+ enemy types
- Lich King boss with 3-phase AI
- Meta-progression: essence, rune unlocks
- Full UI redesign with fantasy design system

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mareli
2026-04-19 12:31:49 +03:00
commit 7a62067af1
91 changed files with 11832 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import '@/styles/globals.css'
import { App } from '@/App'
import { useMetaStore } from '@/state/metaStore'
import { useSettingsStore } from '@/state/settingsStore'
useMetaStore.getState().load()
useSettingsStore.getState().load()
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)