El Rey Infernal
Demonio
monster base type attack cast speed +% and damage -% final [33]
La rareza de los objetos arrojados está aumentada un 15000%
Los monstruos otorgan la experiencia aumentada un 100%
cannot be stunned for ms after stun finished [2000]
cannot be stunned while stunned [1]
The Infernal King
SpectreN
AreaMapa de Caldera
Tagsbludgeoning_weapon, demon, fire_affinity, flesh_armour, has_two_hand_axe, has_two_handed_melee, humanoid, karui, king_boss_map, large_height, large_model, medium_movement, melee, non_unique_map_boss, not_dex, not_int, red_blood
Vida
400%
Armaduras
+25%
Ailment Threshold
400%
Resistencia
40 40 40 25
Damage
225%
Precisión
100%
Probabilidad de golpe crítico
+5%
Multiplicador de Golpe Crítico
+130%
Attack Distance
6 ~ 15
Attack Time
2.25 Second
Damage Spread
±20%
Experiencia
200%
Model Size
100%
Type
KaomMapBoss
Metadata
KaomMapBoss
Nivel
80
Vida
5,624,459
Armaduras
91,801
Evasión
7,124
Escudo de energía
0
Damage
1,942
Daño de hechizos
2,899
Precisión
462
Attack Time
1.5075
Experiencia
139,832
Ailment Threshold
2,699,740
Chill
8,537
Shock
8,537
Brittle
48,296
Scorch
8,537
Sap
23,585
KaomMelee
Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
Ataque estándar
Base Damage: 3085–4627
Probabilidad de golpe crítico: 5%
Attack Time: 2.25 seg
Derriba a tus enemigos con un golpe poderoso.
Inflige un 30% más de daño
El 60% del daño físico se convierte en daño de fuego
20% de probabilidad de quemar a los enemigos
Las quemaduras infligen su daño un 50% más rápido
KaomLeapSlam
Attack, Area, Melee, Movement, Travel, Slam, Totemable
Salto con impacto
Base Damage: 3085–4627
Probabilidad de golpe crítico: 5%
Attack Time: 2.25 seg
Tiempo de recarga: 5 seg
Saltas por los aires para infligir daño y empujar a los enemigos con tu arma en el lugar donde caes. Empujas a los enemigos sobre los que caerías fuera de tu camino. Requiere un hacha, una maza, un cetro, una espada o un báculo. No se puede asistir con Asistencia de Golpes múltiples.
Inflige un 50% más de daño
El 100% del daño físico se convierte en daño de fuego
100% de probabilidad de quemar a los enemigos
53% menos Velocidad de Ataque
El radio base es de 1.5 metros
active skill area of effect radius +% final [40]
cast time overrides attack duration [1]
is area damage [1]
KaomFireChasm
Attack
Base Damage: 3085–4627
Probabilidad de golpe crítico: 5%
Attack Time: 2.25 seg
Tiempo de recarga: 4 seg
Nunca infliges golpes críticos
Inflige un 30% menos de daño
El 50% del daño físico se convierte en daño de fuego
Provoca +6 estallidos
monster penalty against minions damage +% final vs player minions [-25]
TriggerKaomArcherSpawners
Tiempo de recarga: 600 seg
TriggerKaomSkullSpawners
Tiempo de recarga: 600 seg
kaom number of spawners triggered [16]

Object Type

version 2
extends "Metadata/Monsters/Monster"

Actor
{
	main_hand_unarmed_type = "Two_Hand_Axe"
}

Object Type Codes

version 2
extends "Metadata/Monsters/Monster"

Render
{
     //turn_duration = 0.5
	 preload_buff_visual = "kaom_fire"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Kaom/KaomMapBoss"] = {
    name = "The Infernal King",
    life = 4,
    fireResist = 40,
    coldResist = 40,
    lightningResist = 40,
    chaosResist = 25,
    damage = 2.25,
    damageSpread = 0.2,
    attackTime = 2.25,
    attackRange = 15,
    accuracy = 1,
    skillList = {
        "KaomLeapSlam",
        "KaomMelee",
        "KaomFireChasm",
        "TriggerKaomArcherSpawners",
        "TriggerKaomSkullSpawners",
    },
    modList = {
    },
}
-- src\Data\Skills\spectre.lua
skills["KaomLeapSlam"] = {
    name = "Leap Slam",
    hidden = true,
    color = "1",
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.",
    skillTypes = {
        [SkillType.Attack] = true,
        [SkillType.Area] = true,
        [SkillType.Melee] = true,
        [SkillType.Movement] = true,
        [SkillType.Travel] = true,
        [SkillType.Slam] = true,
        [SkillType.Totemable] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1.4,
    baseFlags = {
        attack = true,
        area = true,
        melee = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "active_skill_damage_+%_final",
        "base_chance_to_ignite_%",
        "skill_physical_damage_%_to_convert_to_fire",
        "active_skill_attack_speed_+%_final",
        "active_skill_area_of_effect_radius_+%_final",
        "active_skill_base_area_of_effect_radius",
        "is_area_damage",
        "cast_time_overrides_attack_duration",
    },
    levels = {
        [1] = {50, 100, 100, -53, 40, 15, levelRequirement = 2, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["KaomMelee"] = {
    name = "Default Attack",
    hidden = true,
    color = "1",
    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_physical_damage_%_to_convert_to_fire",
        "active_skill_damage_+%_final",
        "base_chance_to_ignite_%",
        "faster_burn_%",
    },
    levels = {
        [1] = {60, 30, 20, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["KaomFireChasm"] = {
    name = "KaomFireChasm",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
        [SkillType.Attack] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        attack = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "upheaval_number_of_spikes",
        "active_skill_damage_+%_final",
        "monster_penalty_against_minions_damage_+%_final_vs_player_minions",
        "skill_physical_damage_%_to_convert_to_fire",
        "global_cannot_crit",
    },
    levels = {
        [1] = {6, -30, -25, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["TriggerKaomArcherSpawners"] = {
    name = "TriggerKaomArcherSpawners",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 3,
    baseFlags = {
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
    },
    levels = {
        [1] = {levelRequirement = 0, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["TriggerKaomSkullSpawners"] = {
    name = "TriggerKaomSkullSpawners",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "kaom_number_of_spawners_triggered",
    },
    levels = {
        [1] = {10, levelRequirement = 38, statInterpolation = {1},  cost = { }, },
        [2] = {13, levelRequirement = 56, statInterpolation = {1},  cost = { }, },
        [3] = {16, levelRequirement = 68, statInterpolation = {1},  cost = { }, },
    },
}
monster base type attack cast speed +% and damage -% final [33]
IdMonsterSpeedAndDamageFixupComplete
FamilyMonsterSpeedAndDamageFixup
Domainsmonstruo (3)
GenerationTypeúnico (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
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    IdMonsterMapBoss
    FamilyMonsterMapBoss
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 100 Max: 100 Global
  • monster dropped item rarity +% Min: 15000 Max: 15000 Global
  • cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    IdStunRepeatImmunityMapBoss_
    FamilyNothing
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • cannot be stunned while stunned Min: 1 Max: 1 Global
  • cannot be stunned for ms after stun finished Min: 2000 Max: 2000 Global
  • El Rey Infernal
    Demonio
    monster base type attack cast speed +% and damage -% final [33]
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    The Infernal King
    SpectreN
    Tagsbludgeoning_weapon, demon, fire_affinity, flesh_armour, has_two_hand_axe, has_two_handed_melee, humanoid, karui, large_height, large_model, medium_movement, melee, not_dex, not_int, red_blood, standalone_map_boss
    Vida
    400%
    Armaduras
    +25%
    Ailment Threshold
    400%
    Resistencia
    40 40 40 25
    Damage
    225%
    Precisión
    100%
    Probabilidad de golpe crítico
    +5%
    Multiplicador de Golpe Crítico
    +130%
    Attack Distance
    6 ~ 15
    Attack Time
    2.25 Second
    Damage Spread
    ±20%
    Experiencia
    200%
    Model Size
    100%
    Type
    KaomMapBoss
    Metadata
    KaomMapBossStandalone
    Nivel
    68
    Vida
    557,385
    Armaduras
    35,988
    Evasión
    4,739
    Escudo de energía
    0
    Damage
    957
    Daño de hechizos
    1,429
    Precisión
    290
    Attack Time
    1.5075
    Experiencia
    112,805
    Ailment Threshold
    351,153
    Chill
    1,110
    Shock
    1,110
    Brittle
    6,282
    Scorch
    1,110
    Sap
    3,068
    KaomMelee
    Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
    Ataque estándar
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Derriba a tus enemigos con un golpe poderoso.
    Inflige un 30% más de daño
    El 60% del daño físico se convierte en daño de fuego
    20% de probabilidad de quemar a los enemigos
    Las quemaduras infligen su daño un 50% más rápido
    KaomLeapSlam
    Attack, Area, Melee, Movement, Travel, Slam, Totemable
    Salto con impacto
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Tiempo de recarga: 5 seg
    Saltas por los aires para infligir daño y empujar a los enemigos con tu arma en el lugar donde caes. Empujas a los enemigos sobre los que caerías fuera de tu camino. Requiere un hacha, una maza, un cetro, una espada o un báculo. No se puede asistir con Asistencia de Golpes múltiples.
    Inflige un 50% más de daño
    El 100% del daño físico se convierte en daño de fuego
    100% de probabilidad de quemar a los enemigos
    53% menos Velocidad de Ataque
    El radio base es de 1.5 metros
    active skill area of effect radius +% final [40]
    cast time overrides attack duration [1]
    is area damage [1]
    KaomFireChasm
    Attack
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Tiempo de recarga: 4 seg
    Nunca infliges golpes críticos
    Inflige un 30% menos de daño
    El 50% del daño físico se convierte en daño de fuego
    Provoca +6 estallidos
    monster penalty against minions damage +% final vs player minions [-25]

    Object Type

    version 2
    extends "Metadata/Monsters/Monster"
    extends "Metadata/Monsters/StandaloneMapBoss"
    
    Actor
    {
    	main_hand_unarmed_type = "Two_Hand_Axe"
    }
    

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Monster"
    extends "Metadata/Monsters/StandaloneMapBoss"
    
    Render
    {
    	preload_buff_visual = "kaom_fire"
    }
    
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/Kaom/KaomMapBossStandalone"] = {
        name = "The Infernal King",
        life = 4,
        fireResist = 40,
        coldResist = 40,
        lightningResist = 40,
        chaosResist = 25,
        damage = 2.25,
        damageSpread = 0.2,
        attackTime = 2.25,
        attackRange = 15,
        accuracy = 1,
        skillList = {
            "KaomLeapSlam",
            "KaomMelee",
            "KaomFireChasm",
        },
        modList = {
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomLeapSlam"] = {
        name = "Leap Slam",
        hidden = true,
        color = "1",
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Area] = true,
            [SkillType.Melee] = true,
            [SkillType.Movement] = true,
            [SkillType.Travel] = true,
            [SkillType.Slam] = true,
            [SkillType.Totemable] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1.4,
        baseFlags = {
            attack = true,
            area = true,
            melee = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "active_skill_damage_+%_final",
            "base_chance_to_ignite_%",
            "skill_physical_damage_%_to_convert_to_fire",
            "active_skill_attack_speed_+%_final",
            "active_skill_area_of_effect_radius_+%_final",
            "active_skill_base_area_of_effect_radius",
            "is_area_damage",
            "cast_time_overrides_attack_duration",
        },
        levels = {
            [1] = {50, 100, 100, -53, 40, 15, levelRequirement = 2, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomMelee"] = {
        name = "Default Attack",
        hidden = true,
        color = "1",
        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_physical_damage_%_to_convert_to_fire",
            "active_skill_damage_+%_final",
            "base_chance_to_ignite_%",
            "faster_burn_%",
        },
        levels = {
            [1] = {60, 30, 20, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomFireChasm"] = {
        name = "KaomFireChasm",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Attack] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "upheaval_number_of_spikes",
            "active_skill_damage_+%_final",
            "monster_penalty_against_minions_damage_+%_final_vs_player_minions",
            "skill_physical_damage_%_to_convert_to_fire",
            "global_cannot_crit",
        },
        levels = {
            [1] = {6, -30, -25, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    
    monster base type attack cast speed +% and damage -% final [33]
    IdMonsterSpeedAndDamageFixupComplete
    FamilyMonsterSpeedAndDamageFixup
    Domainsmonstruo (3)
    GenerationTypeúnico (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
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    IdMonsterMapBoss
    FamilyMonsterMapBoss
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 100 Max: 100 Global
  • monster dropped item rarity +% Min: 15000 Max: 15000 Global
  • cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    IdStunRepeatImmunityMapBoss_
    FamilyNothing
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • cannot be stunned while stunned Min: 1 Max: 1 Global
  • cannot be stunned for ms after stun finished Min: 2000 Max: 2000 Global
  • El Rey Infernal
    Demonio
    monster base type attack cast speed +% and damage -% final [33]
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    The Infernal King
    SpectreN
    Tagsbludgeoning_weapon, demon, elder_map_boss, flesh_armour, humanoid, is_unarmed, karui, large_height, large_model, medium_movement, non_attacking, not_dex, not_int, red_blood
    Vida
    400%
    Armaduras
    +25%
    Ailment Threshold
    400%
    Resistencia
    40 40 40 25
    Damage
    225%
    Precisión
    100%
    Probabilidad de golpe crítico
    +5%
    Multiplicador de Golpe Crítico
    +130%
    Attack Distance
    6 ~ 15
    Attack Time
    2.25 Second
    Damage Spread
    ±20%
    Experiencia
    200%
    Model Size
    100%
    Type
    KaomMapBoss
    Metadata
    KaomMapBossElder

    Object Type

    version 2
    extends "Metadata/Monsters/ElderBosses/ElderBossClone"

    Object Type Codes

    version 2
    extends "Metadata/Monsters/ElderBosses/ElderBossClone"
    
    Render
    {
    	 preload_buff_visual = "kaom_fire"
    }
    
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/Kaom/KaomMapBossElder"] = {
        name = "The Infernal King",
        life = 4,
        fireResist = 40,
        coldResist = 40,
        lightningResist = 40,
        chaosResist = 25,
        damage = 2.25,
        damageSpread = 0.2,
        attackTime = 2.25,
        attackRange = 15,
        accuracy = 1,
        skillList = {
        },
        modList = {
        },
    }
    
    monster base type attack cast speed +% and damage -% final [33]
    IdMonsterSpeedAndDamageFixupComplete
    FamilyMonsterSpeedAndDamageFixup
    Domainsmonstruo (3)
    GenerationTypeúnico (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
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    IdMonsterMapBoss
    FamilyMonsterMapBoss
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 100 Max: 100 Global
  • monster dropped item rarity +% Min: 15000 Max: 15000 Global
  • cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    IdStunRepeatImmunityMapBoss_
    FamilyNothing
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • cannot be stunned while stunned Min: 1 Max: 1 Global
  • cannot be stunned for ms after stun finished Min: 2000 Max: 2000 Global
  • El Rey Infernal
    Demonio
    monster base type attack cast speed +% and damage -% final [33]
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    The Infernal King
    SpectreN
    Tagsbludgeoning_weapon, demon, fire_affinity, flesh_armour, has_two_hand_axe, has_two_handed_melee, humanoid, karui, king_boss_map, large_height, large_model, medium_movement, melee, no_maven, not_dex, not_int, red_blood
    Vida
    400%
    Armaduras
    +25%
    Ailment Threshold
    400%
    Resistencia
    40 40 40 25
    Damage
    225%
    Precisión
    100%
    Probabilidad de golpe crítico
    +5%
    Multiplicador de Golpe Crítico
    +130%
    Attack Distance
    6 ~ 15
    Attack Time
    2.25 Second
    Damage Spread
    ±20%
    Experiencia
    200%
    Model Size
    100%
    Type
    KaomMapBoss
    Metadata
    KaomMapBossShaper
    Nivel
    68
    Vida
    557,385
    Armaduras
    35,988
    Evasión
    4,739
    Escudo de energía
    0
    Damage
    957
    Daño de hechizos
    1,429
    Precisión
    290
    Attack Time
    1.5075
    Experiencia
    112,805
    Ailment Threshold
    351,153
    Chill
    1,110
    Shock
    1,110
    Brittle
    6,282
    Scorch
    1,110
    Sap
    3,068
    KaomMelee
    Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
    Ataque estándar
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Derriba a tus enemigos con un golpe poderoso.
    Inflige un 30% más de daño
    El 60% del daño físico se convierte en daño de fuego
    20% de probabilidad de quemar a los enemigos
    Las quemaduras infligen su daño un 50% más rápido
    KaomLeapSlam
    Attack, Area, Melee, Movement, Travel, Slam, Totemable
    Salto con impacto
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Tiempo de recarga: 5 seg
    Saltas por los aires para infligir daño y empujar a los enemigos con tu arma en el lugar donde caes. Empujas a los enemigos sobre los que caerías fuera de tu camino. Requiere un hacha, una maza, un cetro, una espada o un báculo. No se puede asistir con Asistencia de Golpes múltiples.
    Inflige un 50% más de daño
    El 100% del daño físico se convierte en daño de fuego
    100% de probabilidad de quemar a los enemigos
    53% menos Velocidad de Ataque
    El radio base es de 1.5 metros
    active skill area of effect radius +% final [40]
    cast time overrides attack duration [1]
    is area damage [1]
    KaomFireChasm
    Attack
    Base Damage: 1520–2280
    Probabilidad de golpe crítico: 5%
    Attack Time: 2.25 seg
    Tiempo de recarga: 4 seg
    Nunca infliges golpes críticos
    Inflige un 30% menos de daño
    El 50% del daño físico se convierte en daño de fuego
    Provoca +6 estallidos
    monster penalty against minions damage +% final vs player minions [-25]
    TriggerKaomArcherSpawners
    Tiempo de recarga: 600 seg
    TriggerKaomSkullSpawners
    Tiempo de recarga: 600 seg
    kaom number of spawners triggered [16]

    Object Type

    version 2
    extends "Metadata/Monsters/Monster"
    
    Actor
    {
    	main_hand_unarmed_type = "Two_Hand_Axe"
    }
    

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Monster"
    
    Render
    {
         //turn_duration = 0.5
    	 preload_buff_visual = "kaom_fire"
    }
    
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/Kaom/KaomMapBossShaper"] = {
        name = "The Infernal King",
        life = 4,
        fireResist = 40,
        coldResist = 40,
        lightningResist = 40,
        chaosResist = 25,
        damage = 2.25,
        damageSpread = 0.2,
        attackTime = 2.25,
        attackRange = 15,
        accuracy = 1,
        skillList = {
            "KaomLeapSlam",
            "KaomMelee",
            "KaomFireChasm",
            "TriggerKaomArcherSpawners",
            "TriggerKaomSkullSpawners",
        },
        modList = {
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomLeapSlam"] = {
        name = "Leap Slam",
        hidden = true,
        color = "1",
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Area] = true,
            [SkillType.Melee] = true,
            [SkillType.Movement] = true,
            [SkillType.Travel] = true,
            [SkillType.Slam] = true,
            [SkillType.Totemable] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1.4,
        baseFlags = {
            attack = true,
            area = true,
            melee = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "active_skill_damage_+%_final",
            "base_chance_to_ignite_%",
            "skill_physical_damage_%_to_convert_to_fire",
            "active_skill_attack_speed_+%_final",
            "active_skill_area_of_effect_radius_+%_final",
            "active_skill_base_area_of_effect_radius",
            "is_area_damage",
            "cast_time_overrides_attack_duration",
        },
        levels = {
            [1] = {50, 100, 100, -53, 40, 15, levelRequirement = 2, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomMelee"] = {
        name = "Default Attack",
        hidden = true,
        color = "1",
        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_physical_damage_%_to_convert_to_fire",
            "active_skill_damage_+%_final",
            "base_chance_to_ignite_%",
            "faster_burn_%",
        },
        levels = {
            [1] = {60, 30, 20, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["KaomFireChasm"] = {
        name = "KaomFireChasm",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Attack] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "upheaval_number_of_spikes",
            "active_skill_damage_+%_final",
            "monster_penalty_against_minions_damage_+%_final_vs_player_minions",
            "skill_physical_damage_%_to_convert_to_fire",
            "global_cannot_crit",
        },
        levels = {
            [1] = {6, -30, -25, 50, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["TriggerKaomArcherSpawners"] = {
        name = "TriggerKaomArcherSpawners",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 3,
        baseFlags = {
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
        },
        levels = {
            [1] = {levelRequirement = 0, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["TriggerKaomSkullSpawners"] = {
        name = "TriggerKaomSkullSpawners",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "kaom_number_of_spawners_triggered",
        },
        levels = {
            [1] = {10, levelRequirement = 38, statInterpolation = {1},  cost = { }, },
            [2] = {13, levelRequirement = 56, statInterpolation = {1},  cost = { }, },
            [3] = {16, levelRequirement = 68, statInterpolation = {1},  cost = { }, },
        },
    }
    
    monster base type attack cast speed +% and damage -% final [33]
    IdMonsterSpeedAndDamageFixupComplete
    FamilyMonsterSpeedAndDamageFixup
    Domainsmonstruo (3)
    GenerationTypeúnico (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
    La rareza de los objetos arrojados está aumentada un 15000%
    Los monstruos otorgan la experiencia aumentada un 100%
    IdMonsterMapBoss
    FamilyMonsterMapBoss
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 100 Max: 100 Global
  • monster dropped item rarity +% Min: 15000 Max: 15000 Global
  • cannot be stunned for ms after stun finished [2000]
    cannot be stunned while stunned [1]
    IdStunRepeatImmunityMapBoss_
    FamilyNothing
    Domainsmonstruo (3)
    GenerationTypeúnico (3)
    Req. level1
    Stats
  • cannot be stunned while stunned Min: 1 Max: 1 Global
  • cannot be stunned for ms after stun finished Min: 2000 Max: 2000 Global
  • Edit

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