Celestial Guardian and Shadow Weaver: Difference between revisions
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:Homebrew Items]][[Category:Custom Items]][[Category: Solarisprimes Items]] | [[Category:Homebrew Items]][[Category:Custom Items]][[Category: Solarisprimes Items]] | ||
====Very Rare, Requires Attunement==== | ====Very Rare, Requires Attunement==== | ||
[[File: | [[File:cg.png]] [[File:sw.png]] | ||
==Description== | ==Description== | ||
Keyblade of the Celestial Guardian: | Keyblade of the Celestial Guardian: |
Latest revision as of 22:10, 1 December 2024
Very Rare, Requires Attunement
Description
Keyblade of the Celestial Guardian: Appearance: A large, ornate keyblade with a celestial theme. The blade is a shimmering silver, with constellations and planets etched into its surface. The hilt is shaped like a crescent moon, and the keychain is a glowing star. Because of the unique requirements for this Keyblade, its weapon modifier is Constitution! When wielded with Shadow Weaver they grant the wielder a finishing move!
Keyblade of the Shadow Weaver Appearance: A sleek, dark keyblade with a shadowy aesthetic. The blade is a deep black, with swirling patterns of darkness and light. The hilt is shaped like a raven's head, and the keychain is a pair of glowing eyes. Because of the unique requirements for this keyblade, its weapon modifier is Constitution! When wielded with Celestial Guardian they grant the wielder a finishing move!
Combo Breaker If Roxas connects and hits all three of his attacks, two attacks and one bonus action attack, he releases a finisher that targets 2 targets within 20ft of him as pillars of light or pillars of dark swirl around him. The targets must make a Dex saving throw, being hit for 4d6 on a failed save, or half as much on a successful one. The damage type depends on what He ends the combo on. The damage is Radiant if it ends with Celestial Guardian and Necrotic if it ends with Shadow Weaver. He can only use this finisher 2 times per long rest.
Code
name: Celestial Guardian automation: - type: variable name: weapmod value: constitutionMod - type: condition condition: level > 10 onTrue: - type: condition condition: level > 15 onTrue: - type: variable name: weapbonus value: "3" onFalse: - type: variable name: weapbonus value: "2" errorBehaviour: "false" onFalse: - type: variable name: weapbonus value: "1" errorBehaviour: "false" - type: condition condition: choice == "" onTrue: - type: target target: all effects: - type: attack hit: - type: damage damage: 1d8 [magical slashing] + 1d6 [radiant] overheal: false miss: [] attackBonus: weapmod + proficiencyBonus + weapbonus onFalse: [] errorBehaviour: "false" - type: text text: >- * Appearance: A large, ornate keyblade with a celestial theme. The blade is a shimmering silver, with constellations and planets etched into its surface. The hilt is shaped like a crescent moon, and the keychain is a glowing star. Because of the unique requirements for this Keyblade, its weapon modifier is Constitution! * When wielded with `Shadow Weaver` they grant the wielder a finishing move! title: Keyblade of the Celestial Guardian _v: 2 proper: true thumb: https://images.mysoulco.com/albums/Solar/IMG_6029.jpeg name: Shadow Weaver automation: - type: variable name: weapmod value: constitutionMod - type: condition condition: level > 10 onTrue: - type: condition condition: level > 15 onTrue: - type: variable name: weapbonus value: "3" onFalse: - type: variable name: weapbonus value: "2" errorBehaviour: "false" onFalse: - type: variable name: weapbonus value: "1" errorBehaviour: "false" - type: condition condition: choice == "" onTrue: - type: target target: all effects: - type: attack hit: - type: damage damage: 1d8 [magical slashing] + 1d6 [necrotic] overheal: false miss: [] attackBonus: weapmod + proficiencyBonus + weapbonus onFalse: [] errorBehaviour: "false" - type: text text: >- * Appearance: A sleek, dark keyblade with a shadowy aesthetic. The blade is a deep black, with swirling patterns of darkness and light. The hilt is shaped like a raven's head, and the keychain is a pair of glowing eyes. Because of the unique requirements for this keyblade, its weapon modifier is Constitution! * When wielded with `Celestial Guardian` they grant the wielder a finishing move! title: Keyblade of the Shadow Weaver _v: 2 proper: true thumb: https://images.mysoulco.com/albums/Solar/IMG_6034.jpeg name: Combo Breaker automation: - type: roll dice: "{proficiencyBonus}d6" name: damage hidden: false - type: roll dice: "{proficiencyBonus}*5" name: feet hidden: true - type: variable name: halfprof value: proficiencyBonus/2 - type: target target: all effects: - type: save stat: dex fail: - type: damage damage: "{damage}[dmg]" overheal: false success: - type: damage damage: ({damage})/2[dmg] overheal: false dc: 8 + proficiencyBonus + constitutionMod - type: text text: If Roxas connects and hits all three of his attacks, two attacks and one bonus action attack, he releases a finisher that targets `{halfprof}` targets within `{feet}ft` of him as pillars of light or pillars of dark swirl around him. The targets must make a Dex saving throw, being hit for `{proficiencyBonus}d6` on a failed save, or half as much on a successful one. The damage type depends on what He ends the combo on. The damage is `Radiant` if it ends with `Celestial Guardian` and `Necrotic` if it ends with `Shadow Weaver`. He can only use this finisher `{halfprof}` times per long rest. title: Combo Breaker _v: 2 verb: Finishes his attacks with activation_type: 8