Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Magiclysm - Floral Healing causes damage #63637

Closed
SittingDucken opened this issue Feb 17, 2023 · 1 comment · Fixed by #63638
Closed

Magiclysm - Floral Healing causes damage #63637

SittingDucken opened this issue Feb 17, 2023 · 1 comment · Fixed by #63638
Labels
(S1 - Need confirmation) Report waiting on confirmation of reproducibility

Comments

@SittingDucken
Copy link
Contributor

SittingDucken commented Feb 17, 2023

Describe the bug

Floral healing is damage section is coded as follows:
{
"valid_targets": [ "self" ],
"effect": "attack",
"shape": "blast",
"flags": [ "CONCENTRATE", "SOMATIC", "VERBAL", "NO_LEGS" ],
"energy_source": "MANA",
"spell_class": "DRUID",
"min_damage": 5,
"max_damage": 20,
"damage_increment": 1
}

Which causes damage to the target, and needs to be coded like Cure Light Wounds:
{
"id": "light_healing",
"type": "SPELL",
"name": "Cure Light Wounds",
"description": "Heals a little bit of damage on the target.",
"valid_targets": [ "self", "ally" ],
"min_damage": -5,
"max_damage": -20,
"damage_increment": -1.0,
}

Attach save file

N/A Trivial to reproduce

Steps to reproduce

  1. Debug spell Floral Healing and horn moss capsules
  2. Cast Floral Healing
  3. Take Damage
  4. Debug spell cure light wounds
  5. Cast cure light wounds
  6. Heal damage

Expected behavior

Floral healing should heal

Screenshots

No response

Versions and configuration

  • OS: Windows
    • OS Version: 10.0.22000.1455 (21H2)
  • Game Version: 170527d [64-bit]
  • Graphics Version: Tiles
  • Game Language: System language []
  • Mods loaded: [
    Dark Days Ahead [dda],
    Disable NPC Needs [no_npc_food],
    Portal Storms Ignore NPCs [personal_portal_storms],
    No Fungal Growth [no_fungal_growth],
    Bionic Professions [package_bionic_professions],
    Innawood [innawood],
    Magiclysm [magiclysm]
    ]

Additional context

No response

@SittingDucken SittingDucken added the (S1 - Need confirmation) Report waiting on confirmation of reproducibility label Feb 17, 2023
@SittingDucken
Copy link
Contributor Author

@KorGgenT Looks trivial to fix in the JSON file. Tested locally, changing integer to negative fixes issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
(S1 - Need confirmation) Report waiting on confirmation of reproducibility
Projects
None yet
1 participant