Frost Wraith
Slug: Frost_Wraith
Open Source Page
Spectre-capable
Tags:
Caster
Unarmed_onhit_audio
allows_additional_projectiles
allows_inc_aoe
cold_affinity
medium_movement
not_str
ranged
sanctum_monster
undead
Areas:
Cemetery of the Eternals
Howling Caves
Ice Cave
Lofty Summit
Stones of Serle
The Ziggurat Refuge
Trial of the Sekhemas
No custom art yet. Upload one to replace the placeholder.
Core Stat Percentiles
Evasion Rating
956
Top 4.7%
Spell Damage
373
Top 44%
Accuracy
2,502
Top 71%
Armour
2,413
Top 81%
Damage
373
Top 82%
Life
8,067
Top 88%
Other Notable Percentiles
Critical Damage Bonus
+30%
Top 0.1%
Energy Shield From Life
35%
Top 1.5%
Level
68
Top 2.1%
Minion Energy Shield
3,881
Top 3.1%
Critical Hits Chance
5%
Top 3.2%
Energy Shield
4,344
Top 4.6%
Frost Wraith
Variant code: WraithSpookyColdOverview
Summary
| Spectre | Y | |
|---|---|---|
| Area | Cemetery of the Eternals, Stones of Serle, Howling Caves, Lofty Summit, The Ziggurat Refuge, Ice Cave | |
| Tags | allows_additional_projectiles, allows_inc_aoe, Caster, cold_affinity, medium_movement, not_str, ranged, Unarmed_onhit_audio, undead | |
| Packs |
Base Multipliers
Life
160%
Energy Shield From Life
35%
Evasion
+35%
Resistance
Damage
160%
Accuracy
100%
Critical Hits Chance
5%
Critical Damage Bonus
+30%
Attack Distance
6 ~ 6
Attack Time
1.5 Second
Damage Spread
±20%
Experience
160%
Model Size
125%
Type
WraithCold
Metadata
WraithSpookyCold
Extra Data
version 2
extends "Metadata/Monsters/Monster"
Stats
{
set_base_heavy_stun_duration_ms = 3333
}
version 2
extends "Metadata/Monsters/Monster"
Life
{
on_spawned_alive =
"
AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/base_cold.epk' );
AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/epk/raiseSpectre_Skin.epk' );
"
on_death =
"
RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/base_cold.epk' );
RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/epk/raiseSpectre_Skin.epk' );
"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Wraith/WraithSpookyCold"] = {
name = "Frost Wraith",
life = 1.6,
energyShield = 0.35,
fireResist = 0,
coldResist = 0,
lightningResist = 0,
chaosResist = 0,
damage = 1.6,
damageSpread = 0.2,
attackTime = 1.5,
attackRange = 6,
accuracy = 1,
skillList = {
"SpookyWraithProjectileCold",
"SpookyWraithProjectileExplosionCold",
"GraveyardSpookyGhostExplode",
"GraveyardGhostDashToTarget",
"GraveyardGhostDashToTargetFar",
},
modList = {
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileCold"] = {
name = "SpookyWraithProjectileCold",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Projectile] = true,
[SkillType.ProjectilesFromUser] = true,
[SkillType.Triggerable] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 1.5,
baseFlags = {
spell = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"monster_projectile_variation",
"base_is_projectile",
"projectile_uses_contact_position",
"projectile_uses_contact_direction",
"base_deal_no_damage",
"use_scaled_contact_offset",
},
levels = {
[1] = {0, 0, 1003, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileExplosionCold"] = {
name = "SpookyWraithProjectileExplosionCold",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 1,
baseFlags = {
spell = true,
area = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"is_area_damage",
"base_skill_can_be_blocked",
"base_is_projectile",
"base_skill_can_be_avoided_by_dodge_roll",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardSpookyGhostExplode"] = {
name = "GraveyardSpookyGhostExplode",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 2.5,
baseFlags = {
spell = true,
area = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"hit_damage_freeze_multiplier_+%",
"is_area_damage",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, 100, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTarget"] = {
name = "GraveyardGhostDashToTarget",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTargetFar"] = {
name = "GraveyardGhostDashToTargetFar",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"walk_emerge_extra_distance",
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {-15, levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}
Frost Wraith
Variant code: WraithSpookyColdSanctumTrialTimeOverview
Summary
| Spectre | Y | |
|---|---|---|
| Area | Trial of the Sekhemas | |
| Tags | allows_additional_projectiles, allows_inc_aoe, Caster, cold_affinity, medium_movement, not_str, ranged, sanctum_monster, Unarmed_onhit_audio, undead | |
| Packs |
Base Multipliers
Life
160%
Energy Shield From Life
35%
Evasion
+35%
Resistance
Damage
160%
Accuracy
100%
Critical Hits Chance
5%
Critical Damage Bonus
+30%
Attack Distance
6 ~ 6
Attack Time
1.5 Second
Damage Spread
±20%
Experience
160%
Model Size
125%
Type
WraithCold
Metadata
WraithSpookyColdSanctumTrialTime
Extra Data
version 2
extends "Metadata/Monsters/Monster"
extends "Metadata/Monsters/MarakethSanctumTrial/SanctumMonsterBase"
Stats
{
set_base_heavy_stun_duration_ms = 3333
}
version 2
extends "Metadata/Monsters/Monster"
extends "Metadata/Monsters/MarakethSanctumTrial/SanctumMonsterBase"
BaseEvents
{
on_construction_complete = "AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act2_FOUR/TimeWraith/epk/idle_fx.epk' );"
}
Life
{
on_death = "RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act2_FOUR/TimeWraith/epk/idle_fx.epk' );"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Wraith/WraithSpookyColdSanctumTrialTime"] = {
name = "Frost Wraith",
life = 1.6,
energyShield = 0.35,
fireResist = 0,
coldResist = 0,
lightningResist = 0,
chaosResist = 0,
damage = 1.6,
damageSpread = 0.2,
attackTime = 1.5,
attackRange = 6,
accuracy = 1,
skillList = {
"SpookyWraithProjectileColdTime",
"SpookyWraithProjectileExplosionCold",
"MPSSpookyWraithPortalNova",
"GraveyardSpookyGhostExplodeTime",
"GraveyardGhostDashToTarget",
"GraveyardGhostDashToTargetFar",
},
modList = {
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileColdTime"] = {
name = "SpookyWraithProjectileColdTime",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Projectile] = true,
[SkillType.ProjectilesFromUser] = true,
[SkillType.Triggerable] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 1.5,
baseFlags = {
spell = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_physical_damage",
"spell_maximum_base_physical_damage",
"monster_projectile_variation",
"base_is_projectile",
"projectile_uses_contact_position",
"projectile_uses_contact_direction",
"use_scaled_contact_offset",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, 1409, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileExplosionCold"] = {
name = "SpookyWraithProjectileExplosionCold",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 1,
baseFlags = {
spell = true,
area = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"is_area_damage",
"base_skill_can_be_blocked",
"base_is_projectile",
"base_skill_can_be_avoided_by_dodge_roll",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["MPSSpookyWraithPortalNova"] = {
name = "MPSSpookyWraithPortalNova",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Projectile] = true,
[SkillType.ProjectilesFromUser] = true,
[SkillType.Triggerable] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 1,
baseFlags = {
spell = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_physical_damage",
"spell_maximum_base_physical_damage",
"monster_projectile_variation",
"number_of_additional_projectiles",
"projectile_spread_radius",
"projectile_speed_variation_+%",
"base_is_projectile",
"action_attack_or_cast_time_uses_animation_length",
"check_for_targets_between_initiator_and_projectile_source",
"projectile_uses_contact_position",
"maintain_projectile_direction_when_using_contact_position",
"use_scaled_contact_offset",
"projectile_uses_contact_direction",
"projectile_ballistic_angle_from_reference_event",
"projectile_ballistic_angle_from_target_distance",
"projectile_ballistic_ignore_force_while_exploding",
"ballistic_projectiles_always_bounce",
"projectiles_not_offset",
"distribute_projectiles_over_contact_points",
"projectile_uses_bearing_as_firing_orientation",
"projectiles_travel_at_fixed_height",
"projectiles_not_offset",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, 1408, 9, 30, 25, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardSpookyGhostExplodeTime"] = {
name = "GraveyardSpookyGhostExplodeTime",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 2.5,
baseFlags = {
spell = true,
area = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_physical_damage",
"spell_maximum_base_physical_damage",
"hit_damage_freeze_multiplier_+%",
"is_area_damage",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, 100, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTarget"] = {
name = "GraveyardGhostDashToTarget",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTargetFar"] = {
name = "GraveyardGhostDashToTargetFar",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"walk_emerge_extra_distance",
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {-15, levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}
Frost Wraith
Variant code: WraithSpookyColdStrongbox_Overview
Summary
| Spectre | N | |
|---|---|---|
| Tags | allows_additional_projectiles, allows_inc_aoe, Caster, cold_affinity, medium_movement, not_str, ranged, Unarmed_onhit_audio, undead | |
| Packs |
Base Multipliers
Life
160%
Energy Shield From Life
35%
Evasion
+35%
Resistance
Damage
160%
Accuracy
100%
Critical Hits Chance
5%
Critical Damage Bonus
+30%
Attack Distance
6 ~ 6
Attack Time
1.5 Second
Damage Spread
±20%
Experience
160%
Model Size
125%
Type
WraithCold
Metadata
WraithSpookyColdStrongbox_
Extra Data
version 2
extends "Metadata/Monsters/Monster"
Stats
{
set_base_heavy_stun_duration_ms = 3333
}
version 2
extends "Metadata/Monsters/Monster"
Life
{
on_spawned_alive =
"
AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/base_cold.epk' );
AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/epk/raiseSpectre_Skin.epk' );
"
on_death =
"
RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/base_cold.epk' );
RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Gallows/Act1/SpookyWraith/epk/raiseSpectre_Skin.epk' );
"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Wraith/WraithSpookyColdStrongbox_"] = {
name = "Frost Wraith",
life = 1.6,
energyShield = 0.35,
fireResist = 0,
coldResist = 0,
lightningResist = 0,
chaosResist = 0,
damage = 1.6,
damageSpread = 0.2,
attackTime = 1.5,
attackRange = 6,
accuracy = 1,
skillList = {
"SpookyWraithProjectileCold",
"SpookyWraithProjectileExplosionCold",
"GraveyardSpookyGhostExplode",
"GraveyardGhostDashToTarget",
"GraveyardGhostDashToTargetFar",
},
modList = {
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileCold"] = {
name = "SpookyWraithProjectileCold",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Projectile] = true,
[SkillType.ProjectilesFromUser] = true,
[SkillType.Triggerable] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 1.5,
baseFlags = {
spell = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"monster_projectile_variation",
"base_is_projectile",
"projectile_uses_contact_position",
"projectile_uses_contact_direction",
"base_deal_no_damage",
"use_scaled_contact_offset",
},
levels = {
[1] = {0, 0, 1003, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["SpookyWraithProjectileExplosionCold"] = {
name = "SpookyWraithProjectileExplosionCold",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 1,
baseFlags = {
spell = true,
area = true,
projectile = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"is_area_damage",
"base_skill_can_be_blocked",
"base_is_projectile",
"base_skill_can_be_avoided_by_dodge_roll",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardSpookyGhostExplode"] = {
name = "GraveyardSpookyGhostExplode",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Triggerable] = true,
[SkillType.Spell] = true,
[SkillType.Damage] = true,
},
statDescriptionScope = "geometry_spell",
castTime = 2.5,
baseFlags = {
spell = true,
area = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"spell_minimum_base_cold_damage",
"spell_maximum_base_cold_damage",
"hit_damage_freeze_multiplier_+%",
"is_area_damage",
},
levels = {
[1] = {0.80000001192093, 1.2000000476837, 100, critChance = 7, levelRequirement = 1, statInterpolation = {3, 3}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTarget"] = {
name = "GraveyardGhostDashToTarget",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}
-- src\Data\Skills\spectre.lua
skills["GraveyardGhostDashToTargetFar"] = {
name = "GraveyardGhostDashToTargetFar",
hidden = true,
color = ,
baseEffectiveness = 0,
incrementalEffectiveness = 0,
skillTypes = {
[SkillType.Spell] = true,
[SkillType.Movement] = true,
},
statDescriptionScope = "skill_stat_descriptions",
castTime = 0.93,
baseFlags = {
spell = true,
},
baseMods = {
},
qualityStats = {
},
stats = {
"walk_emerge_extra_distance",
"action_attack_or_cast_time_uses_animation_length",
},
levels = {
[1] = {-15, levelRequirement = 1, statInterpolation = {}, cost = { }, },
},
}