幻化魔像
构造体
攻击速度减慢 15%
Animated Stone
幽魂Y
幽魂 取代Metadata/Monsters/RockGolem/RockGolemSpectre
标签bludgeoning_weapon, construct, fast_movement, has_one_hand_sword, has_one_handed_melee, medium_height, melee, mud_blood, not_int, physical_affinity, stone_armour
Packs
  • 幻化魔像, 不朽福音, 斗牛犬魔, 雄健恐喙
  • 生命
    525%
    护甲
    +60%
    闪避值
    +40%
    异常状态临界值
    525%
    抗性
    75 0 0 0
    伤害
    150%
    命中
    140%
    攻击暴击率
    +5%
    暴击伤害
    +130%
    攻击距离
    8 ~ 10
    攻击间隔
    1.5 秒
    伤害分布
    ±20%
    经验值
    150%
    Model Size
    110%
    类型
    RockGolem
    Metadata
    RockGolem
    等级
    68
    生命
    33,775
    护甲
    46,064
    闪避值
    6,635
    能量护盾
    0
    伤害
    560
    法术伤害
    560
    命中
    406
    攻击间隔
    1.5
    经验值
    15,383
    异常状态临界值
    33,775
    冰缓
    107
    Shock
    107
    Brittle
    604
    Scorch
    107
    Sap
    295
    Melee
    攻击, 范围攻击, 技能可幻影射手, 投射物, 近战单一目标, 攻击可重复, 近战, 玩家投射物
    普通攻击
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击间隔: 1.5 秒
    对你的敌人无情痛击。
    skill can fire arrows [1]
    skill can fire wand projectiles [1]
    RockGolemMonsterSlam
    攻击, 范围, 可触发
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击伤害: 175%
    攻击伤害: 175%
    攻击间隔: 1.5 秒
    冷却时间: 6 秒
    击中时有 33% 的几率嘲讽敌人
    攻击伤害总增 75%
    攻击速度总降 20%
    active skill area of effect radius +% final [200]
    is area damage [1]
    RockGolemWhirlingBlades
    攻击, 近战, 位移, 快行
    回旋之刃
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击间隔: 1.5 秒
    冷却时间: 6 秒
    在敌人之间穿梭,造成武器伤害。双持时使用两把武器同时发起攻击并造成一次伤害。需要匕首、爪类和单手剑。无法被多重打击辅助。
    攻击速度总降 50%
    cast time overrides attack duration [1]
    ignores proximity shield [1]
    monster flurry [1]
    skill sound variation [1]

    Object Type

    version 2
    extends "Metadata/Monsters/Monster"
    
    Actor
    {
    	basic_action = "Emerge"
    }
    
    Life
    {
    	corpse_usable = false
    }
    

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Monster"
    
    Render
    {
    	//turn_duration = 0.5
    	fade_arrows = true
    }
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/RockGolem/RockGolem"] = {
        name = "Animated Stone",
        life = 5.25,
        fireResist = 75,
        coldResist = 0,
        lightningResist = 0,
        chaosResist = 0,
        damage = 1.5,
        damageSpread = 0.2,
        attackTime = 1.5,
        attackRange = 10,
        accuracy = 1.4,
        weaponType1 = "One Hand Sword",
        skillList = {
            "RockGolemMonsterSlam",
            "RockGolemWhirlingBlades",
            "Melee",
        },
        modList = {
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["RockGolemMonsterSlam"] = {
        name = "RockGolemMonsterSlam",
        hidden = true,
        color = "1",
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Area] = true,
            [SkillType.Triggerable] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
            area = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "active_skill_attack_speed_+%_final",
            "chance_to_taunt_on_hit_%",
            "active_skill_area_of_effect_radius_+%_final",
            "is_area_damage",
        },
        levels = {
            [1] = {-20, 33, 200, baseMultiplier = 1.75, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["RockGolemWhirlingBlades"] = {
        name = "Whirling Blades",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Dive through enemies, dealing weapon damage. If dual wielding attacks with both weapons, dealing the damage of both in one hit. Only works with Daggers, Claws, and One-Handed Swords. Cannot be supported by Multistrike.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Melee] = true,
            [SkillType.Movement] = true,
            [SkillType.Travel] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1.43,
        baseFlags = {
            attack = true,
            melee = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "skill_sound_variation",
            "active_skill_attack_speed_+%_final",
            "monster_flurry",
            "cast_time_overrides_attack_duration",
            "ignores_proximity_shield",
        },
        levels = {
            [1] = {1, -50, 1, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- 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 = { }, },
        },
    }
    
    攻击速度减慢 15%
    IdMonsterSlowerAttackSpeed
    FamilyIncreasedAttackSpeed
    Domains怪物 (3)
    GenerationType传奇 (3)
    Req. level1
    Stats
  • attack speed +% Min: -15 Max: -15 全域
  • Craft Tagsattack speed
    幻化魔像
    构造体
    攻击速度减慢 15%
    Animated Stone
    幽魂Y
    标签bludgeoning_weapon, construct, fast_movement, has_one_hand_sword, has_one_handed_melee, medium_height, melee, mud_blood, not_int, physical_affinity, stone_armour
    生命
    270%
    护甲
    +60%
    闪避值
    +40%
    异常状态临界值
    270%
    抗性
    75 0 0 0
    伤害
    150%
    命中
    140%
    攻击暴击率
    +5%
    暴击伤害
    +130%
    攻击距离
    8 ~ 10
    攻击间隔
    1.5 秒
    伤害分布
    ±20%
    经验值
    150%
    Model Size
    110%
    类型
    RockGolemSpectre
    Metadata
    RockGolemSpectre
    等级
    68
    生命
    17,370
    护甲
    46,064
    闪避值
    6,635
    能量护盾
    0
    伤害
    560
    法术伤害
    560
    命中
    406
    攻击间隔
    1.5
    经验值
    15,383
    异常状态临界值
    17,370
    冰缓
    55
    Shock
    55
    Brittle
    311
    Scorch
    55
    Sap
    152
    Melee
    攻击, 范围攻击, 技能可幻影射手, 投射物, 近战单一目标, 攻击可重复, 近战, 玩家投射物
    普通攻击
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击间隔: 1.5 秒
    对你的敌人无情痛击。
    skill can fire arrows [1]
    skill can fire wand projectiles [1]
    RockGolemMonsterSlam
    攻击, 范围, 可触发
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击伤害: 175%
    攻击伤害: 175%
    攻击间隔: 1.5 秒
    冷却时间: 6 秒
    击中时有 33% 的几率嘲讽敌人
    攻击伤害总增 75%
    攻击速度总降 20%
    active skill area of effect radius +% final [200]
    is area damage [1]
    RockGolemWhirlingBlades
    攻击, 近战, 位移, 快行
    回旋之刃
    基本伤害: 448–672
    攻击暴击率: 5%
    攻击间隔: 1.5 秒
    冷却时间: 6 秒
    在敌人之间穿梭,造成武器伤害。双持时使用两把武器同时发起攻击并造成一次伤害。需要匕首、爪类和单手剑。无法被多重打击辅助。
    攻击速度总降 50%
    cast time overrides attack duration [1]
    ignores proximity shield [1]
    monster flurry [1]
    skill sound variation [1]

    Object Type

    version 2
    extends "Metadata/Monsters/Monster"
    
    Actor
    {
    	basic_action = "Emerge"
    }
    
    Life
    {
    	corpse_usable = false
    }
    

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Monster"
    
    Render
    {
    	//turn_duration = 0.5
    	fade_arrows = true
    }
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/RockGolem/RockGolemSpectre"] = {
        name = "Animated Stone",
        life = 2.7,
        fireResist = 75,
        coldResist = 0,
        lightningResist = 0,
        chaosResist = 0,
        damage = 1.5,
        damageSpread = 0.2,
        attackTime = 1.5,
        attackRange = 10,
        accuracy = 1.4,
        weaponType1 = "One Hand Sword",
        skillList = {
            "RockGolemMonsterSlam",
            "RockGolemWhirlingBlades",
            "Melee",
        },
        modList = {
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["RockGolemMonsterSlam"] = {
        name = "RockGolemMonsterSlam",
        hidden = true,
        color = "1",
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Area] = true,
            [SkillType.Triggerable] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
            area = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "active_skill_attack_speed_+%_final",
            "chance_to_taunt_on_hit_%",
            "active_skill_area_of_effect_radius_+%_final",
            "is_area_damage",
        },
        levels = {
            [1] = {-20, 33, 200, baseMultiplier = 1.75, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["RockGolemWhirlingBlades"] = {
        name = "Whirling Blades",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Dive through enemies, dealing weapon damage. If dual wielding attacks with both weapons, dealing the damage of both in one hit. Only works with Daggers, Claws, and One-Handed Swords. Cannot be supported by Multistrike.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.Melee] = true,
            [SkillType.Movement] = true,
            [SkillType.Travel] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1.43,
        baseFlags = {
            attack = true,
            melee = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "skill_sound_variation",
            "active_skill_attack_speed_+%_final",
            "monster_flurry",
            "cast_time_overrides_attack_duration",
            "ignores_proximity_shield",
        },
        levels = {
            [1] = {1, -50, 1, levelRequirement = 1, statInterpolation = {},  cost = { }, },
        },
    }
    -- 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 = { }, },
        },
    }
    
    攻击速度减慢 15%
    IdMonsterSlowerAttackSpeed
    FamilyIncreasedAttackSpeed
    Domains怪物 (3)
    GenerationType传奇 (3)
    Req. level1
    Stats
  • attack speed +% Min: -15 Max: -15 全域
  • Craft Tagsattack speed
    Edit

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