Initial commit — Godot space roguelite source
- Touch controls: direct InputEventScreenTouch in shop_ui (bypass relay) - ItemDB: static preload list instead of DirAccess scan (export fix) - All 18 items with EN localisation (name_en, desc_en, category_en) - Ship playstyles: NOVA-1 shield, INFERNO ram, AURORA agile/tank - Quasar: SMBH visual, jet boost, merge, push, BH-eating - Atlas & UI text updated EN+DE Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
extends ItemDef
|
||||
|
||||
func _init() -> void:
|
||||
id = "special_wipe_core"
|
||||
name = "Warp-Kern"
|
||||
name_en = "Warp Core"
|
||||
desc = "Big Wipe lädt 35% schneller"
|
||||
desc_en = "Big Wipe charges 35% faster"
|
||||
category = "SPEZIAL"
|
||||
category_en = "SPECIAL"
|
||||
icon = "✺"
|
||||
cost = 150
|
||||
rarity = 2
|
||||
effects = { "wipe_mult": 0.65 }
|
||||
visual_pixels = [
|
||||
[-2, 0, "accent"],
|
||||
[-3, -1, "bright"],
|
||||
[-3, 1, "bright"],
|
||||
]
|
||||
hull_size_bonus = 0.0
|
||||
Reference in New Issue
Block a user