18708e2d19
Key changes: - Katana: Items.Preset_Katana_Saburo_Legendary (Satori clone) → Retains all bleeding, hemorrhaging, hidden GameplayLogicPackages - Knife: Items.Preset_Tanto_Saburo_Retrofix (Nehan clone) → Retains thrown bleeding, hemorrhaging, health restoration - Only displayName/localizedDescription overridden - Localization in r6/loc/en-us/ and r6/loc/de-de/ (proper LocKey resolution) - Removed all custom statModifiers (they were ignored anyway) - Removed IconicWeaponModAbilityBase approach - Removed LocalizationOverride block - Clean file structure matching CDPR conventions Thanks to ChatGPT for the correct approach: - Stats via statModifiers were being ignored - HealOnKill/HealthRegen don't exist as BaseStats - Nehan heals via GameplayLogicPackage, not stats - ArmorPenetration is not the right stat name post-2.0 - Cloning existing Iconics preserves all hidden behavior
28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
YAML
# Crystal Blades — Kristallklingen
|
|
# Klon von Satori (Katana) und Nehan (Wurfdolch)
|
|
# Behält alle versteckten GameplayLogicPackages, Scripte und Effekte
|
|
# Nur Name, Beschreibung und zusätzliche Stats werden überschrieben
|
|
|
|
# ============================================================
|
|
# WAFFE 1: Kristallschneider — Klon von Satori
|
|
# Satori = Items.Preset_Katana_Saburo_Legendary
|
|
# Behält: Bleeding, Hemorrhaging, alle Hidden Packages
|
|
# ============================================================
|
|
|
|
Items.Preset_Crystal_Katana:
|
|
$base: Items.Preset_Katana_Saburo_Legendary
|
|
displayName: LocKey#crystal_katana_name
|
|
localizedDescription: LocKey#crystal_katana_desc
|
|
quality: Quality.Legendary
|
|
|
|
# ============================================================
|
|
# WAFFE 2: Phantom Splitter — Klon von Nehan
|
|
# Nehan = Items.Preset_Tanto_Saburo_Retrofix
|
|
# Behält: Thrown hits apply Bleeding, Hemorrhaging, Healing
|
|
# ============================================================
|
|
|
|
Items.Preset_Crystal_Knife:
|
|
$base: Items.Preset_Tanto_Saburo_Retrofix
|
|
displayName: LocKey#crystal_knife_name
|
|
localizedDescription: LocKey#crystal_knife_desc
|
|
quality: Quality.Legendary |