d02be9df45
Two new weapons: - Kristallschneider (Katana): monomolecular crystal blade, ignores armor, 100% bleed - Phantom Splitter (Wurfdolch): monomolecular crystal blade, ignores armor, 100% bleed Includes: - TweakXL YAML with weapon stats and status effects - Localization (EN + DE) - README with installation guide
141 lines
3.8 KiB
YAML
141 lines
3.8 KiB
YAML
# Crystal Blades — Kristallklingen
|
|
# TweakXL Definitionen für zwei neue Waffen:
|
|
# 1. "Kristallschneider" — Katana mit monomolekularer Klinge
|
|
# 2. "Phantom Splitter" — Wurfdolch mit monomolekularer Klinge
|
|
# Beide ignorieren Rüstung und verursachen 100% Blutung
|
|
|
|
# ============================================================
|
|
# WAFFE 1: Kristallschneider (Katana)
|
|
# ============================================================
|
|
|
|
Items.Preset_Crystal_Katana:
|
|
$base: Items.Preset_Katana_Default
|
|
displayName: LocKey#crystal_katana_name
|
|
localizedDescription: LocKey#crystal_katana_desc
|
|
quality: Quality.Legendary
|
|
appearanceResourceName: crystal_katana_app
|
|
|
|
# Stats
|
|
dps: 350.0
|
|
damagePerHit: 180.0
|
|
attackSpeed: 1.2
|
|
attacksPerSecond: 1.2
|
|
|
|
# Monomolekular: Ignoriert Rüstung
|
|
armorPenetration: 1.0 # 100% Rüstung ignorieren
|
|
|
|
# 100% Bleed Chance
|
|
statusEffectApplicationChance: 1.0
|
|
|
|
# Damage Type
|
|
damageType: DamageType.Physical
|
|
|
|
# Iconic Effekte
|
|
iconicName: LocKey#crystal_katana_iconic
|
|
iconicDescription: LocKey#crystal_katana_iconic_desc
|
|
|
|
# Slots
|
|
slots:
|
|
- Items.IconicWeaponModSlot
|
|
|
|
# Werte
|
|
mass: 2.5
|
|
sellPrice: 5000
|
|
buyPrice: 25000
|
|
|
|
# Crit
|
|
critChance: 25.0
|
|
critDamageMultiplier: 2.0
|
|
|
|
# ============================================================
|
|
# WAFFE 2: Phantom Splitter (Wurfdolch)
|
|
# ============================================================
|
|
|
|
Items.Preset_Crystal_ThrowingKnife:
|
|
$base: Items.Preset_Knife_Default
|
|
displayName: LocKey#crystal_knife_name
|
|
localizedDescription: LocKey#crystal_knife_desc
|
|
quality: Quality.Legendary
|
|
appearanceResourceName: crystal_knife_app
|
|
|
|
# Stats — schnell aber weniger Damage pro Hit
|
|
dps: 280.0
|
|
damagePerHit: 120.0
|
|
attackSpeed: 2.5
|
|
attacksPerSecond: 2.5
|
|
|
|
# Monomolekular: Ignoriert Rüstung
|
|
armorPenetration: 1.0 # 100% Rüstung ignorieren
|
|
|
|
# 100% Bleed Chance
|
|
statusEffectApplicationChance: 1.0
|
|
|
|
# Damage Type
|
|
damageType: DamageType.Physical
|
|
|
|
# Iconic Effekte
|
|
iconicName: LocKey#crystal_knife_iconic
|
|
iconicDescription: LocKey#crystal_knife_iconic_desc
|
|
|
|
# Slots
|
|
slots:
|
|
- Items.IconicWeaponModSlot
|
|
|
|
# Werte
|
|
mass: 0.5
|
|
sellPrice: 3000
|
|
buyPrice: 15000
|
|
|
|
# Crit — hoher Crit für Wurfdolch
|
|
critChance: 40.0
|
|
critDamageMultiplier: 3.0
|
|
|
|
# ============================================================
|
|
# Status Effects — 100% Bleed
|
|
# ============================================================
|
|
|
|
# Custom Status Effect: Garantierte Blutung bei jedem Treffer
|
|
Attacks.GuaranteedBleedingEffect:
|
|
$type: gamedataAttack_Record
|
|
attackType: AttackType.Melee
|
|
statusEffects:
|
|
- Attacks.GuaranteedBleedingEntry
|
|
|
|
Attacks.GuaranteedBleedingEntry:
|
|
$type: gamedataStatusEffectAttackData_Record
|
|
statusEffect: BaseStatusEffect.Bleeding
|
|
applicationChance: 1.0 # 100% chance
|
|
duration: 10.0 # 10 seconds bleed
|
|
maxStacks: 5 # stackable
|
|
|
|
# ============================================================
|
|
# Armor Penetration — Rüstung komplett ignorieren
|
|
# ============================================================
|
|
|
|
# Custom Effekt: Rüstung ignorieren
|
|
Items.Crystal_ArmorPierce_Effect:
|
|
$type: gamedataStatusEffect_Record
|
|
duration:
|
|
$type: gamedataStatModifier_Record
|
|
modifierType: Additive
|
|
statType: StatusEffectDuration
|
|
value: 9999.0 # permanent while equipped
|
|
packages:
|
|
- Items.Crystal_ArmorPierce_Package
|
|
|
|
Items.Crystal_ArmorPierce_Package:
|
|
$type: gamedataEffector_Record
|
|
effectorType: AddStatusEffect
|
|
applicationTarget: Target
|
|
statusEffect: Items.Crystal_ArmorPierce_StatEffect
|
|
|
|
Items.Crystal_ArmorPierce_StatEffect:
|
|
$type: gamedataStatGroup_Record
|
|
stats:
|
|
- Items.Crystal_ArmorPierce_Stat
|
|
|
|
Items.Crystal_ArmorPierce_Stat:
|
|
$type: gamedataConstantStatModifier_Record
|
|
modifierType: Additive
|
|
statType: Armor
|
|
value: -9999.0 # Setzt Rüstung auf 0 |