Clone [DNT-UNUSED]
Humanoïde
SpectreY
Tags2HSharpMetal_onhit_audio, fast_movement, human, humanoid, not_int, red_blood
Vie
120%
+50%
Évasion
+25%
Résistance
0 0 0 0
Damage
120%
Précision
100%
Attack Distance
5 ~ 15
Temps d'attaque
1.755 Second
Damage Spread
±20%
Expérience
120%
Model Size
110%
Type
TwilightOrderOfficerColdClone
Metadata
TwilightOrderOfficerColdClone
Niveau
68
Vie
9,308
3,620
Damage
280
Dégâts des sorts
280
Précision
2,464
Temps d'attaque
1.755
Expérience
34,361
Minion Life
8,316
Minion Damage
1,163
Minion Armour
6,033
GATwilightOrderFrozenCleave
Triggerable, Attack
Base Damage: 224–336
Chances de Touche critique: 5%
Temps d'attaque: 1.755 sec.
Convertit 75% des Dégâts Physiques en Dégâts de Froid
action attack or cast time uses animation length [1]
is area damage [1]

Object Type

version 2
extends "Metadata/Monsters/Monster"

DiesAfterTime
{

}

StateMachine
{
	
}

Functions
{
	
}

Object Type Codes

version 2
extends "Metadata/Monsters/Monster"

BaseEvents
{
	on_construction_complete = 
	"
		this.fade_in_amount = 0.0;
		this.crack_amount = 0.0;
		Call( update_ice_state, fade_in_amount, crack_amount);
		StartStateTimer( fade_in, 0.05 );
		AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act5_FOUR/TwilightOrderOfficer/epk/frozen_legion/frozen_clone.epk' );
	"
}

Animated
{
	on_event_fade_start_for_cleave_01 = "StartStateTimer( fade_out, 0.05 );"
}

StateMachine
{
	on_timer_fade_in =
	"
		this.fade_in_amount = fade_in_amount + 0.05;
		Call( update_ice_state, fade_in_amount, crack_amount);
		If(fade_in_amount < 1.0, {StartStateTimer( fade_in, 0.05 );} );
		RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act5_FOUR/TwilightOrderOfficer/epk/frozen_legion/frozen_clone.epk' );
		AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act5_FOUR/TwilightOrderOfficer/epk/frozen_legion/frozen_clone.epk' );
	"

	on_timer_fade_out = 
	"
		this.fade_in_amount = fade_in_amount - 0.05;
		this.crack_amount = crack_amount + 0.01;
		Call( update_ice_state, fade_in_amount, crack_amount);
		If(fade_in_amount > 0.0, {StartStateTimer( fade_out, 0.05 );} );		
		RemoveEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act5_FOUR/TwilightOrderOfficer/epk/frozen_legion/frozen_clone.epk' );
		AddEffectPack( 'Metadata/Effects/Spells/monsters_effects/Act5_FOUR/TwilightOrderOfficer/epk/frozen_legion/frozen_clone.epk' );
	
	"
}

Functions
{
	update_ice_state =
	"
		this.specific_object_position = null;
		this.specific_object_position += arg1;
		this.specific_object_position += arg2;
		this.specific_object_position += 0.0;
	"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/TwilightOrderSoldiers/TwilightOrderOfficerColdClone"] = {
    name = "Clone [DNT-UNUSED]",
    life = 1.2,
    fireResist = 0,
    coldResist = 0,
    lightningResist = 0,
    chaosResist = 0,
    damage = 1.2,
    damageSpread = 0.2,
    attackTime = 1.755,
    attackRange = 15,
    accuracy = 1,
    weaponType1 = "Two Hand Sword",
    skillList = {
        "GATwilightOrderFrozenCleave",
    },
    modList = {
    },
}
-- src\Data\Skills\spectre.lua
skills["GATwilightOrderFrozenCleave"] = {
    name = "GATwilightOrderFrozenCleave",
    hidden = true,
    color = ,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
        [SkillType.Triggerable] = true,
        [SkillType.Attack] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        attack = true,
        area = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "active_skill_base_physical_damage_%_to_convert_to_cold",
        "is_area_damage",
        "action_attack_or_cast_time_uses_animation_length",
    },
    levels = {
        [1] = {75, levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
Edit

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