Doedre Línguapodre
Demoníaco
Área: A Colheita
monster base type attack cast speed +% and damage -% final [33]
Você pode aplicar 4 Maldições adicionais
Reflete Feitiços
apply X random curses on hit [0]
monster penalty against minions damage +% final vs player minions [-20]
projectile speed variation +% [8]
level 1 to 40 life +% final [-25]
level 41 to 57 life +% final [-15]
Doedre Darktongue
SpectreN
AreaA Colheita
TagsConjurador, demon, doedre_monster_story, flesh_armour, human, humanoid, is_unarmed, large_height, large_model, medium_movement, melee, not_dex, not_str, physical_affinity, puncturing_weapon, ranged, red_blood, unholy_trio_monster_story
Vida
1440%
Energy Shield From Life
100%
Ailment Threshold
1440%
Resistência
85 0 0 0
Damage
250%
Precisão
100%
Chance de Crítico
+5%
Multiplicador de Acerto Crítico
+130%
Attack Distance
6 ~ 15
Attack Time
1.5 Second
Damage Spread
±20%
Experiência
200%
Model Size
100%
Type
Doedre
Metadata
Doedre
Nível
40
Vida
13,997
Armadura
2,811
Evasão
1,597
Escudo de Energia
972
Damage
211
Dano Mágico
211
Precisão
92
Attack Time
1.5
Experiência
6,814
Ailment Threshold
13,997
Chill
44
Shock
44
Brittle
250
Scorch
44
Sap
122
Melee
Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
Ataque Padrão
Base Damage: 169–253
Chance de Crítico: 5%
Attack Time: 1.5 seg
Abate seus inimigos com um golpe poderoso.
skill can fire arrows [1]
skill can fire wand projectiles [1]
DoedreDodgeLeft
monster dodge distance [35]
DoedreDodgeRight
monster dodge direction [1]
monster dodge distance [35]
DoedreBloodProjectile
Projectile, ProjectilesFromUser, Spell, Damage, Area, Trappable, Totemable, Mineable, Multicastable, Triggerable, AreaSpell
Tempo de Conjuração: 1 seg
Habilidade de morteiro de monstro genérico. Como Projétil de Monstro, mas com um efeito de impacto.
Causa 175.1 a 262.6 de Dano Físico
base is projectile [1]
projectile minimum range [5]
projectile spread radius [5]
spell maximum action distance +% [-60]
CurseConsume
Spell, Buff
Consumo de Maldição
Tempo de Conjuração: 1.67 seg
Recarga: 5 seg
Duração base é de 5 segundos
DoedreBloodProjectileMulti
Projectile, ProjectilesFromUser, Spell, Damage, Area, Trappable, Totemable, Mineable, Multicastable, Triggerable, AreaSpell
Tempo de Conjuração: 1 seg
Habilidade de morteiro de monstro genérico. Como Projétil de Monstro, mas com um efeito de impacto.
Causa 116.7 a 175.1 de Dano Físico
15% menos Velocidade de Conjuração
Dispara 2 Projéteis adicionais
base is projectile [1]
projectile minimum range [20]
projectile spread radius [20]
spell maximum action distance +% [-60]

Object Type

version 2
extends "Metadata/Monsters/Monster"

Transitionable
{
}

MinimapIcon
{
	icon = 3
}

NPC
{
	marker_enabled = false
}

Stats
{
	monster_can_spawn_with_talisman = 1
}

Object Type Codes

version 2
extends "Metadata/Monsters/Monster"

Render
{
     //turn_duration = 0.5
}

Transitionable
{
	on_transition = "HideMinimapIcon();"
	create_transitioned = "HideMinimapIcon();"
	create_untransitioned = "PlayAnimation( idle );"
}

Preload
{
	preload_animated_object = "Metadata/Critters/CaneToad/CaneToadDoedre.ao"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Doedre/Doedre"] = {
    name = "Doedre Darktongue",
    life = 14.4,
    energyShield = 1,
    fireResist = 85,
    coldResist = 0,
    lightningResist = 0,
    chaosResist = 0,
    damage = 2.5,
    damageSpread = 0.2,
    attackTime = 1.5,
    attackRange = 15,
    accuracy = 1,
    skillList = {
        "Melee",
        "DoedreBloodProjectile",
        "DoedreBloodProjectileMulti",
        "DoedreDodgeLeft",
        "DoedreDodgeRight",
        "CurseConsume",
    },
    modList = {
    },
}
-- src\Data\Skills\spectre.lua
skills["Melee"] = {
    name = "Default Attack",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    description = "Strike your foes down with a powerful blow.",
    skillTypes = {
        [SkillType.Attack] = true,
        [SkillType.RangedAttack] = true,
        [SkillType.MirageArcherCanUse] = true,
        [SkillType.Projectile] = true,
        [SkillType.MeleeSingleTarget] = true,
        [SkillType.Multistrikeable] = true,
        [SkillType.Melee] = true,
        [SkillType.ProjectilesFromUser] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        attack = true,
        melee = true,
        projectile = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "skill_can_fire_arrows",
        "skill_can_fire_wand_projectiles",
    },
    levels = {
        [1] = {levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["DoedreBloodProjectile"] = {
    name = "DoedreBloodProjectile",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.",
    skillTypes = {
        [SkillType.Projectile] = true,
        [SkillType.ProjectilesFromUser] = true,
        [SkillType.Spell] = true,
        [SkillType.Damage] = true,
        [SkillType.Area] = true,
        [SkillType.Trappable] = true,
        [SkillType.Totemable] = true,
        [SkillType.Mineable] = true,
        [SkillType.Multicastable] = true,
        [SkillType.Triggerable] = true,
        [SkillType.AreaSpell] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        area = true,
        spell = true,
        projectile = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "spell_minimum_base_physical_damage",
        "spell_maximum_base_physical_damage",
        "spell_maximum_action_distance_+%",
        "projectile_spread_radius",
        "projectile_minimum_range",
        "base_is_projectile",
    },
    levels = {
        [1] = {1.2000000476837, 1.7999999523163, -60, 5, 5, levelRequirement = 40, statInterpolation = {3, 3},  cost = { }, },
        [2] = {1.2000000476837, 1.7999999523163, -60, 5, 5, levelRequirement = 66, statInterpolation = {3, 3},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["DoedreBloodProjectileMulti"] = {
    name = "DoedreBloodProjectileMulti",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.",
    skillTypes = {
        [SkillType.Projectile] = true,
        [SkillType.ProjectilesFromUser] = true,
        [SkillType.Spell] = true,
        [SkillType.Damage] = true,
        [SkillType.Area] = true,
        [SkillType.Trappable] = true,
        [SkillType.Totemable] = true,
        [SkillType.Mineable] = true,
        [SkillType.Multicastable] = true,
        [SkillType.Triggerable] = true,
        [SkillType.AreaSpell] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        area = true,
        spell = true,
        projectile = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "spell_minimum_base_physical_damage",
        "spell_maximum_base_physical_damage",
        "spell_maximum_action_distance_+%",
        "projectile_spread_radius",
        "number_of_additional_projectiles",
        "active_skill_cast_speed_+%_final",
        "projectile_minimum_range",
        "base_is_projectile",
    },
    levels = {
        [1] = {1.2000000476837, 1.7999999523163, -60, 20, 2, -15, 20, levelRequirement = 40, statInterpolation = {3, 3},  cost = { }, },
        [2] = {1.2000000476837, 1.7999999523163, -60, 20, 2, -15, 20, levelRequirement = 66, statInterpolation = {3, 3},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["DoedreDodgeLeft"] = {
    name = "DoedreDodgeLeft",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "monster_dodge_distance",
    },
    levels = {
        [1] = {35, levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["DoedreDodgeRight"] = {
    name = "DoedreDodgeRight",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "monster_dodge_direction",
        "monster_dodge_distance",
    },
    levels = {
        [1] = {1, 35, levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["CurseConsume"] = {
    name = "Curse Consume",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
        [SkillType.Spell] = true,
        [SkillType.Buff] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1.67,
    baseFlags = {
        spell = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "base_skill_effect_duration",
    },
    levels = {
        [1] = {5000, levelRequirement = 40, statInterpolation = {},  cost = { }, },
    },
}
monster base type attack cast speed +% and damage -% final [33]
IdMonsterSpeedAndDamageFixupComplete
FamilyMonsterSpeedAndDamageFixup
Domainsmonstro (3)
GenerationTypeunico (3)
Req. level1
Stats
  • monster base type attack cast speed +% and damage -% final Min: 33 Max: 33 Global
  • Craft Tagscaster_damage damage attack caster speed
    Você pode aplicar 4 Maldições adicionais
    Reflete Feitiços
    apply X random curses on hit [0]
    IdDoedreAdditionalCurseOnEnemies2
    FamilyTorment
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • reflect curses Min: 0 Max: 0 Global
  • curse effect +% Min: 0 Max: 0 Global
  • apply X random curses on hit Min: 0 Max: 0 Global
  • number of additional curses allowed Min: 4 Max: 4 Global
  • Craft Tagscaster curse
    monster penalty against minions damage +% final vs player minions [-20]
    IdMonsterDamageVersusPlayerMinions20
    FamilyMonsterDamageVersusMinions
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • monster penalty against minions damage +% final vs player minions Min: -20 Max: -20 Global
  • Craft Tagsdamage
    projectile speed variation +% [8]
    IdDoedreProjectileSpeedVariation
    FamilyProjectileSpeedVariation
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • projectile speed variation +% Min: 8 Max: 8 Global
  • Craft Tagsspeed
    level 1 to 40 life +% final [-25]
    level 41 to 57 life +% final [-15]
    IdMalachaiSubBossLessLifeAtLevel
    FamilyLifePerDifficulty
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • level 1 to 40 life +% final Min: -25 Max: -25 Global
  • level 41 to 57 life +% final Min: -15 Max: -15 Global
  • Craft Tagsresource life
    Doedre Línguapodre
    Demoníaco
    monster base type attack cast speed +% and damage -% final [33]
    Você pode aplicar 4 Maldições adicionais
    Reflete Feitiços
    apply X random curses on hit [0]
    monster penalty against minions damage +% final vs player minions [-20]
    projectile speed variation +% [8]
    level 1 to 40 life +% final [-25]
    level 41 to 57 life +% final [-15]
    Doedre Darktongue
    SpectreN
    TagsConjurador, demon, flesh_armour, human, humanoid, is_unarmed, large_model, medium_movement, melee, not_dex, not_str, physical_affinity, puncturing_weapon, ranged, red_blood
    Vida
    1440%
    Energy Shield From Life
    100%
    Ailment Threshold
    1440%
    Resistência
    85 0 0 0
    Damage
    250%
    Precisão
    100%
    Chance de Crítico
    +5%
    Multiplicador de Acerto Crítico
    +130%
    Attack Distance
    6 ~ 15
    Attack Time
    1.5 Second
    Damage Spread
    ±20%
    Experiência
    200%
    Model Size
    100%
    Type
    Doedre
    Metadata
    DoedreStandalone
    Nível
    68
    Vida
    92,640
    Armadura
    28,790
    Evasão
    4,739
    Escudo de Energia
    6,127
    Damage
    934
    Dano Mágico
    934
    Precisão
    290
    Attack Time
    1.5
    Experiência
    20,510
    Ailment Threshold
    92,640
    Chill
    293
    Shock
    293
    Brittle
    1,657
    Scorch
    293
    Sap
    809
    Melee
    Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
    Ataque Padrão
    Base Damage: 747–1121
    Chance de Crítico: 5%
    Attack Time: 1.5 seg
    Abate seus inimigos com um golpe poderoso.
    skill can fire arrows [1]
    skill can fire wand projectiles [1]
    DoedreDodgeLeft
    monster dodge distance [35]
    DoedreDodgeRight
    monster dodge direction [1]
    monster dodge distance [35]
    DoedreBloodProjectile
    Projectile, ProjectilesFromUser, Spell, Damage, Area, Trappable, Totemable, Mineable, Multicastable, Triggerable, AreaSpell
    Tempo de Conjuração: 1 seg
    Habilidade de morteiro de monstro genérico. Como Projétil de Monstro, mas com um efeito de impacto.
    Causa 440.4 a 660.6 de Dano Físico
    base is projectile [1]
    projectile minimum range [5]
    projectile spread radius [5]
    spell maximum action distance +% [-60]
    CurseConsume
    Spell, Buff
    Consumo de Maldição
    Tempo de Conjuração: 1.67 seg
    Recarga: 5 seg
    Duração base é de 5 segundos
    DoedreBloodProjectileMulti
    Projectile, ProjectilesFromUser, Spell, Damage, Area, Trappable, Totemable, Mineable, Multicastable, Triggerable, AreaSpell
    Tempo de Conjuração: 1 seg
    Habilidade de morteiro de monstro genérico. Como Projétil de Monstro, mas com um efeito de impacto.
    Causa 293.6 a 440.4 de Dano Físico
    15% menos Velocidade de Conjuração
    Dispara 2 Projéteis adicionais
    base is projectile [1]
    projectile minimum range [20]
    projectile spread radius [20]
    spell maximum action distance +% [-60]

    Object Type

    version 2
    extends "Metadata/Monsters/Monster"
    extends "Metadata/Monsters/StandaloneMonster"
    
    Preload
    {
    	preload_monster_variety = "Metadata/Monsters/Daemon/CurseZoneDaemonEnfeeble"
    	preload_monster_variety = "Metadata/Monsters/Daemon/CurseZoneDaemonTemporalChains"
    	preload_monster_variety = "Metadata/Monsters/Daemon/CurseZoneDaemonVulnerability"
    }

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Monster"
    extends "Metadata/Monsters/StandaloneMonster"
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/Doedre/DoedreStandalone"] = {
        name = "Doedre Darktongue",
        life = 14.4,
        energyShield = 1,
        fireResist = 85,
        coldResist = 0,
        lightningResist = 0,
        chaosResist = 0,
        damage = 2.5,
        damageSpread = 0.2,
        attackTime = 1.5,
        attackRange = 15,
        accuracy = 1,
        skillList = {
            "Melee",
            "DoedreBloodProjectile",
            "DoedreBloodProjectileMulti",
            "DoedreDodgeLeft",
            "DoedreDodgeRight",
            "CurseConsume",
        },
        modList = {
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["Melee"] = {
        name = "Default Attack",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Strike your foes down with a powerful blow.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.RangedAttack] = true,
            [SkillType.MirageArcherCanUse] = true,
            [SkillType.Projectile] = true,
            [SkillType.MeleeSingleTarget] = true,
            [SkillType.Multistrikeable] = true,
            [SkillType.Melee] = true,
            [SkillType.ProjectilesFromUser] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
            melee = true,
            projectile = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "skill_can_fire_arrows",
            "skill_can_fire_wand_projectiles",
        },
        levels = {
            [1] = {levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["DoedreBloodProjectile"] = {
        name = "DoedreBloodProjectile",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.",
        skillTypes = {
            [SkillType.Projectile] = true,
            [SkillType.ProjectilesFromUser] = true,
            [SkillType.Spell] = true,
            [SkillType.Damage] = true,
            [SkillType.Area] = true,
            [SkillType.Trappable] = true,
            [SkillType.Totemable] = true,
            [SkillType.Mineable] = true,
            [SkillType.Multicastable] = true,
            [SkillType.Triggerable] = true,
            [SkillType.AreaSpell] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            area = true,
            spell = true,
            projectile = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "spell_minimum_base_physical_damage",
            "spell_maximum_base_physical_damage",
            "spell_maximum_action_distance_+%",
            "projectile_spread_radius",
            "projectile_minimum_range",
            "base_is_projectile",
        },
        levels = {
            [1] = {1.2000000476837, 1.7999999523163, -60, 5, 5, levelRequirement = 40, statInterpolation = {3, 3},  cost = { }, },
            [2] = {1.2000000476837, 1.7999999523163, -60, 5, 5, levelRequirement = 66, statInterpolation = {3, 3},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["DoedreBloodProjectileMulti"] = {
        name = "DoedreBloodProjectileMulti",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.",
        skillTypes = {
            [SkillType.Projectile] = true,
            [SkillType.ProjectilesFromUser] = true,
            [SkillType.Spell] = true,
            [SkillType.Damage] = true,
            [SkillType.Area] = true,
            [SkillType.Trappable] = true,
            [SkillType.Totemable] = true,
            [SkillType.Mineable] = true,
            [SkillType.Multicastable] = true,
            [SkillType.Triggerable] = true,
            [SkillType.AreaSpell] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            area = true,
            spell = true,
            projectile = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "spell_minimum_base_physical_damage",
            "spell_maximum_base_physical_damage",
            "spell_maximum_action_distance_+%",
            "projectile_spread_radius",
            "number_of_additional_projectiles",
            "active_skill_cast_speed_+%_final",
            "projectile_minimum_range",
            "base_is_projectile",
        },
        levels = {
            [1] = {1.2000000476837, 1.7999999523163, -60, 20, 2, -15, 20, levelRequirement = 40, statInterpolation = {3, 3},  cost = { }, },
            [2] = {1.2000000476837, 1.7999999523163, -60, 20, 2, -15, 20, levelRequirement = 66, statInterpolation = {3, 3},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["DoedreDodgeLeft"] = {
        name = "DoedreDodgeLeft",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "monster_dodge_distance",
        },
        levels = {
            [1] = {35, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["DoedreDodgeRight"] = {
        name = "DoedreDodgeRight",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "monster_dodge_direction",
            "monster_dodge_distance",
        },
        levels = {
            [1] = {1, 35, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["CurseConsume"] = {
        name = "Curse Consume",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Spell] = true,
            [SkillType.Buff] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1.67,
        baseFlags = {
            spell = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "base_skill_effect_duration",
        },
        levels = {
            [1] = {5000, levelRequirement = 40, statInterpolation = {},  cost = { }, },
        },
    }
    
    monster base type attack cast speed +% and damage -% final [33]
    IdMonsterSpeedAndDamageFixupComplete
    FamilyMonsterSpeedAndDamageFixup
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • monster base type attack cast speed +% and damage -% final Min: 33 Max: 33 Global
  • Craft Tagscaster_damage damage attack caster speed
    Você pode aplicar 4 Maldições adicionais
    Reflete Feitiços
    apply X random curses on hit [0]
    IdDoedreAdditionalCurseOnEnemies2
    FamilyTorment
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • reflect curses Min: 0 Max: 0 Global
  • curse effect +% Min: 0 Max: 0 Global
  • apply X random curses on hit Min: 0 Max: 0 Global
  • number of additional curses allowed Min: 4 Max: 4 Global
  • Craft Tagscaster curse
    monster penalty against minions damage +% final vs player minions [-20]
    IdMonsterDamageVersusPlayerMinions20
    FamilyMonsterDamageVersusMinions
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • monster penalty against minions damage +% final vs player minions Min: -20 Max: -20 Global
  • Craft Tagsdamage
    projectile speed variation +% [8]
    IdDoedreProjectileSpeedVariation
    FamilyProjectileSpeedVariation
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • projectile speed variation +% Min: 8 Max: 8 Global
  • Craft Tagsspeed
    level 1 to 40 life +% final [-25]
    level 41 to 57 life +% final [-15]
    IdMalachaiSubBossLessLifeAtLevel
    FamilyLifePerDifficulty
    Domainsmonstro (3)
    GenerationTypeunico (3)
    Req. level1
    Stats
  • level 1 to 40 life +% final Min: -25 Max: -25 Global
  • level 41 to 57 life +% final Min: -15 Max: -15 Global
  • Craft Tagsresource life
    Doedre Língua Sombria Topic /6 ⍟
    NPCNome
    HarganComo se Sarn já não fosse doida o suficiente, agora também temos uma bruxa com língua de chicote cozinhando uma maldição fedorenta nos esgotos. Achei até que fosse a minha sogra. Mas não, baseado no meu pouco conhecimento histórico, creio que é uma tal de Doedre Línguapodre.

    Onde diabos ela se esconde, eu não tenho ideia. Então o único jeito que nós temos de pegar essa bruxa é sujando nossas mãos, e provavelmente muitas outras partes. E por 'nós' eu quero dizer 'você'. Esses esgotos não são lugar para um simples homem de negócios como eu.

    Faça um favor pra gente. Vá para os esgotos e encontre aquela bruxa desgraçada. Faça com que ela se revele e acabe com ela. Hah... melhor no seu do que no meu, não é?
    HarganGeralmente alguém como Doedre abaixaria a cabeça assim que visse você chegando. Acho que a morte nos tira várias coisas, incluindo o bom senso.

    De qualquer forma, obrigado. Os esgotos estão limpos agora que aquela bruxa fétida desentupiu os canos.

    Aqui, pegue isso para comemorar seu bom trabalho com a limpeza.
    SinDoedre Línguapodre é a infecção insidiosa que ameaça com septicemia a grande e terrível ferida que é Sarn.

    No entanto, qualquer certeza que eu tinha de seu paradeiro exato foi soprada pelo mau cheiro de sua existência. Nós teremos que deduzir sua localização daqueles que conhecem melhor a área, essas pessoas que se agarram a Sarn como vermes famintos.
    SinMais uma vez fenda adentro, mais uma vez retornamos vitoriosos. No entanto, tenho que admitir, eu não gostei da sensação de absorver a alma daquela bruxa maldita. Eu definitivamente me senti... Sujo.

    Ainda assim, nossa jornada se aproxima do fim. Ao norte fica Highgate e o cessar de nossos esforços para extrair a Brasa Negra da minha querida Besta morta.

    E já era tempo. A força de Kitava cresce a cada hora que passa, e quanto mais ele e os outros deuses permanecerem nessa terra, menores as chances da sobrevivência humana.
    Elixir de DoedreDoedre Língua Sombria conhecia a Trilha do Taumaturgo.
    Para receber, é preciso oferecer... sem hesitar.
    As Loucuras de Doedre"Morda a língua antes que eu a arranque." - Doedre Línguapodre
    Edit

    Wikis Content is available under CC BY-NC-SA 3.0 unless otherwise noted.