Files
spacel/items/special/special_wipe_core.gd
T
alpacaman edc40f9008 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>
2026-04-21 14:38:09 +02:00

21 lines
458 B
GDScript

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