f016052b3b
KEY FIX (thanks to Kimi K2.6): - Presets don't have displayName — Items do! - Create new Item records (Items.Crystal_Katana, Items.Crystal_Knife) - $base on Items.Katana_Saburo / Items.Tanto_Saburo - displayName: LocKey#crystal_katana_name on the ITEM record - Preset has 'item: Items.Crystal_Katana' pointing to the new item - This is why displayName was ignored — it was on the wrong record type! ArchiveXL localization unchanged (valid .archive + .xl + JSONs)
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
# Crystal Blades — Kristallklingen
|
|
# Klon von Satori (Katana) und Nehan (Wurfdolch)
|
|
# WICHTIG: displayName liegt auf dem ITEM-Record, nicht auf dem PRESET!
|
|
|
|
# ============================================================
|
|
# WAFFE 1: Kristallschneider — Klon von Satori
|
|
# ============================================================
|
|
|
|
# Neues Item-Record mit eigenem Namen
|
|
Items.Crystal_Katana:
|
|
$base: Items.Katana_Saburo
|
|
displayName: LocKey#crystal_katana_name
|
|
localizedDescription: LocKey#crystal_katana_desc
|
|
|
|
# Preset verweist auf das neue Item
|
|
Items.Preset_Crystal_Katana:
|
|
$base: Items.Preset_Katana_Saburo_Legendary
|
|
item: Items.Crystal_Katana
|
|
quality: Quality.Legendary
|
|
|
|
# ============================================================
|
|
# WAFFE 2: Phantom Splitter — Klon von Nehan
|
|
# ============================================================
|
|
|
|
# Neues Item-Record mit eigenem Namen
|
|
Items.Crystal_Knife:
|
|
$base: Items.Tanto_Saburo
|
|
displayName: LocKey#crystal_knife_name
|
|
localizedDescription: LocKey#crystal_knife_desc
|
|
|
|
# Preset verweist auf das neue Item
|
|
Items.Preset_Crystal_Knife:
|
|
$base: Items.Preset_Tanto_Saburo_Retrofix
|
|
item: Items.Crystal_Knife
|
|
quality: Quality.Legendary |