edc40f9008
- 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>
20 lines
488 B
GDScript
20 lines
488 B
GDScript
extends ItemDef
|
|
|
|
func _init() -> void:
|
|
id = "drive_steer"
|
|
name = "Steuerdüsen"
|
|
name_en = "Steering Jets"
|
|
desc = "Massiv wendiger — niedrigerer Topspeed"
|
|
desc_en = "Massively more agile — lower top speed"
|
|
category = "ANTRIEBSMOD"
|
|
category_en = "DRIVE MOD"
|
|
icon = "↺"
|
|
cost = 85
|
|
rarity = 0
|
|
effects = { "turn_mult": 1.35, "speed_mult": 0.90 }
|
|
visual_pixels = [
|
|
[-3, -3, "bright"],
|
|
[-3, 3, "bright"],
|
|
]
|
|
hull_size_bonus = 0.0
|