let chatData = { whisper: ChatMessage.getWhisperRecipients("GM") }
let message = ""

let wounds = duplicate(this.actor.status.wounds)
let regenRoll = await new Roll("1d10").roll();
let regen = regenRoll.total;

if (wounds.value >= wounds.max)
    return

if (wounds.value > 0) 
{
    wounds.value += regen
    if (wounds.value > wounds.max)
    {
        wounds.value = wounds.max
    }
    message += `<b>${this.actor.name}</b> regains ${regen} Wounds.`

    if (regen == 10)
    {
        message += `<br>Additionally, they regenerate a Critical Wound.`
    }
}
else if (regen >= 8) 
{
    message += `<b>${this.actor.name}</b> rolled a ${regen} and regains 1 Wound.`
    wounds.value += 1
    if (regen == 10)
    {
        message += `<br>Additionally, they regenerate a Critical Wound.`
    }
}
else 
{
    message += `<b>${this.actor.name}</b> Regenerate roll of ${regen} - No effect.`
}

await this.actor.update({ "system.status.wounds": wounds })
this.script.scriptMessage(message, { whisper: ChatMessage.getWhisperRecipients("GM") })

if (this.actor.Species?.toLowerCase() != "ogre")
{
   this.actor.setupSkill(game.i18n.localize("NAME.Endurance"), {skipTargets: true, appendTitle :  " - " + this.effect.name, fields : {difficulty : "average"}}).then(test => {
       test.roll()
   })
}