페어그레이브즈 선장
언데드
ignite art variation [2]
몬스터가 주는 경험치 250% 증가
monster dropped item rarity +% [4500]
Captain Fairgraves
SpectreN
Area배들의 묘지
Tagsbone_armour, bones, ghost, has_dual_wield_melee, has_one_hand_sword, has_one_handed_melee, medium_height, melee, not_dex, not_int, physical_affinity, ranged, skeleton, slashing_weapon, summoner, undead, very_slow_movement
생명력
225%
방어구
+15%
Ailment Threshold
225%
저항
0 0 40 0
Damage
204%
정확도
100%
치명타 확률
+5%
치명타 피해 배율
+130%
Attack Distance
6 ~ 9
Attack Time
1.605 Second
Damage Spread
±20%
경험치
150%
Model Size
110%
Type
Fairgraves
Metadata
SkeletonBossFairgraves
레벨
11
생명력
196
방어구
153
회피
285
에너지 보호막
0
Damage
26
주문 피해
26
정확도
24
Attack Time
1.605
경험치
317
Ailment Threshold
196
Chill
1
Shock
1
Brittle
4
Scorch
1
Sap
2
Melee
Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
기본 공격
Base Damage: 21–31
치명타 확률: 5%
Attack Time: 1.605 초
강력한 일격으로 적들을 쓰러트립니다.
skill can fire arrows [1]
skill can fire wand projectiles [1]
FairgravesThrownWeapon
Attack, RangedAttack, Projectile, ProjectilesFromUser
환영 무기 투척
Base Damage: 21–31
치명타 확률: 5%
Attack Time: 1.605 초
장비한 근접 무기의 형태 복제품을 투척합니다. 무기는 날아갔다가 되돌아오며 경로에 있는 적들에게 피해를 주는 회전 공격을 합니다.
주는 피해 25% 감폭
base is projectile [1]
SummonRagingSpiritFairgraves
Spell, Minion, Duration, MinionsCanExplode, Trappable, Totemable, Mineable, Multicastable, Triggerable, Fire, CreatesMinion
시전 속도: 0.8 초
재사용 대기시간: 10 초
스킬 2회 추가 반복
주는 피해 20% 감폭
소환된 격노의 유령 최대치 20
기본 지속시간 4
시전 속도 200% 증가
alternate minion [1]
ignite art variation [2]
EmptyActionFairgravesCommand
Spell
시전 속도: 1 초
재사용 대기시간: 2 초

Object Type

version 2
extends "Metadata/Monsters/Skeletons/Skeleton"

Transitionable
{
	num_states = 4
	on_transition_to_3 = "MakeCollidable();"
}

NPC
{
	marker_enabled = false
}

Positioned
{
	force_placement = true
	blocking = false
}

Actor
{
	slow_animations_go_to_idle = false
}

StateMachine
{
	
}

Object Type Codes

version 2
extends "Metadata/Monsters/Skeletons/Skeleton"

Transitionable
{
	create_state_1 =
	"
		DisableTargetable();
		PlayAnimationType( Emerge );
		PauseAnimation();
		DisableRendering();
	"

	create_state_2 = "DisableTargetable(  );"
	create_state_3 = "DisableTargetable(  );"

	on_transition_to_2 =
	"
		EnableRendering();
		SpawnEffect( Metadata/Effects/Spells/monsters_effects/fairgraves_transform/rig.ao );
	"

	on_transition_to_4 = "EnableTargetable();"
}

Life
{
	on_death = "RemoveEffects();"
	on_spawned_dead = "RemoveEffects();"
}
-- src\Data\Spectres.lua
minions["Metadata/Monsters/Skeletons/SkeletonBossFairgraves"] = {
    name = "Captain Fairgraves",
    life = 2.25,
    fireResist = 0,
    coldResist = 0,
    lightningResist = 40,
    chaosResist = 0,
    damage = 2.04,
    damageSpread = 0.2,
    attackTime = 1.605,
    attackRange = 9,
    accuracy = 1,
    weaponType1 = "One Hand Sword",
    weaponType2 = "One Hand Axe",
    skillList = {
        "Melee",
        "FairgravesThrownWeapon",
        "SummonRagingSpiritFairgraves",
        "EmptyActionFairgravesCommand",
    },
    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["FairgravesThrownWeapon"] = {
    name = "Spectral Throw",
    hidden = true,
    color = "2",
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    description = "Throws a spectral copy of your melee weapon. It flies out and then returns to you, in a spinning attack that damages enemies in its path.",
    skillTypes = {
        [SkillType.Attack] = true,
        [SkillType.RangedAttack] = true,
        [SkillType.Projectile] = true,
        [SkillType.ProjectilesFromUser] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        attack = true,
        projectile = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "active_skill_damage_+%_final",
        "number_of_additional_projectiles",
        "base_projectile_speed_+%",
        "base_is_projectile",
    },
    levels = {
        [1] = {-25, 0, 0, levelRequirement = 11, statInterpolation = {1, 1, 1},  cost = { }, },
        [2] = {-50, 2, 15, 50, -50, levelRequirement = 43, statInterpolation = {1, 1, 1, 1, 1},  cost = { }, },
        [3] = {-50, 3, 30, 50, -50, levelRequirement = 55, statInterpolation = {1, 1, 1, 1, 1},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["SummonRagingSpiritFairgraves"] = {
    name = "SummonRagingSpiritFairgraves",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
        [SkillType.Spell] = true,
        [SkillType.Minion] = true,
        [SkillType.Duration] = true,
        [SkillType.MinionsCanExplode] = true,
        [SkillType.Trappable] = true,
        [SkillType.Totemable] = true,
        [SkillType.Mineable] = true,
        [SkillType.Multicastable] = true,
        [SkillType.Triggerable] = true,
        [SkillType.Fire] = true,
        [SkillType.CreatesMinion] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 0.8,
    baseFlags = {
        spell = true,
        duration = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
        "base_skill_effect_duration",
        "base_number_of_raging_spirits_allowed",
        "skill_repeat_count",
        "base_cast_speed_+%",
        "alternate_minion",
        "ignite_art_variation",
        "active_skill_damage_+%_final",
    },
    levels = {
        [1] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 4, statInterpolation = {},  cost = { }, },
        [2] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 7, statInterpolation = {},  cost = { }, },
        [3] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 9, statInterpolation = {},  cost = { }, },
        [4] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 11, statInterpolation = {},  cost = { }, },
        [5] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 16, statInterpolation = {},  cost = { }, },
        [6] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 20, statInterpolation = {},  cost = { }, },
        [7] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 27, statInterpolation = {},  cost = { }, },
        [8] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 28, statInterpolation = {},  cost = { }, },
        [9] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 29, statInterpolation = {},  cost = { }, },
        [10] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 32, statInterpolation = {},  cost = { }, },
        [11] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 36, statInterpolation = {},  cost = { }, },
        [12] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 40, statInterpolation = {},  cost = { }, },
        [13] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 45, statInterpolation = {},  cost = { }, },
        [14] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 49, statInterpolation = {},  cost = { }, },
        [15] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 50, statInterpolation = {},  cost = { }, },
        [16] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 52, statInterpolation = {},  cost = { }, },
        [17] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 65, statInterpolation = {},  cost = { }, },
        [18] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 69, statInterpolation = {},  cost = { }, },
        [19] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 73, statInterpolation = {},  cost = { }, },
        [20] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 74, statInterpolation = {},  cost = { }, },
        [21] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 75, statInterpolation = {},  cost = { }, },
        [22] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 76, statInterpolation = {},  cost = { }, },
        [23] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 77, statInterpolation = {},  cost = { }, },
        [24] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 78, statInterpolation = {},  cost = { }, },
        [25] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 79, statInterpolation = {},  cost = { }, },
        [26] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 80, statInterpolation = {},  cost = { }, },
        [27] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 81, statInterpolation = {},  cost = { }, },
        [28] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 82, statInterpolation = {},  cost = { }, },
    },
}
-- src\Data\Skills\spectre.lua
skills["EmptyActionFairgravesCommand"] = {
    name = "EmptyActionFairgravesCommand",
    hidden = true,
    color = 4,
    baseEffectiveness = 0,
    incrementalEffectiveness = 0,
    skillTypes = {
        [SkillType.Spell] = true,
    },
    statDescriptionScope = "skill_stat_descriptions",
    castTime = 1,
    baseFlags = {
        spell = true,
    },
    baseMods = {
    },
    qualityStats = {
    },
    stats = {
    },
    levels = {
        [1] = {levelRequirement = 1, statInterpolation = {},  cost = { }, },
    },
}
ignite art variation [2]
IdIgniteArtVariationGhostflame_
FamilyStatusAilmentArtVariation
Domains몬스터 (3)
GenerationType고유 (3)
Req. level1
Stats
  • ignite art variation Min: 2 Max: 2 Global
  • 몬스터가 주는 경험치 250% 증가
    monster dropped item rarity +% [4500]
    IdMonsterQuestBossAct1_
    FamilyMonsterActBoss
    Domains몬스터 (3)
    GenerationType고유 (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 250 Max: 250 Global
  • monster dropped item rarity +% Min: 4500 Max: 4500 Global
  • 페어그레이브즈 선장
    언데드
    ignite art variation [2]
    몬스터가 주는 경험치 250% 증가
    monster dropped item rarity +% [4500]
    Captain Fairgraves
    SpectreN
    Tagsbone_armour, bones, ghost, has_dual_wield_melee, has_one_hand_sword, has_one_handed_melee, melee, not_dex, not_int, physical_affinity, ranged, skeleton, slashing_weapon, summoner, undead, very_slow_movement
    생명력
    225%
    방어구
    +15%
    Ailment Threshold
    225%
    저항
    0 0 40 0
    Damage
    204%
    정확도
    100%
    치명타 확률
    +5%
    치명타 피해 배율
    +130%
    Attack Distance
    6 ~ 9
    Attack Time
    1.605 Second
    Damage Spread
    ±20%
    경험치
    150%
    Model Size
    110%
    Type
    Fairgraves
    Metadata
    SkeletonBossFairgravesStandalone
    레벨
    68
    생명력
    14,475
    방어구
    33,109
    회피
    4,739
    에너지 보호막
    0
    Damage
    762
    주문 피해
    762
    정확도
    290
    Attack Time
    1.605
    경험치
    15,383
    Ailment Threshold
    14,475
    Chill
    46
    Shock
    46
    Brittle
    259
    Scorch
    46
    Sap
    126
    Melee
    Attack, RangedAttack, MirageArcherCanUse, Projectile, MeleeSingleTarget, Multistrikeable, Melee, ProjectilesFromUser
    기본 공격
    Base Damage: 610–914
    치명타 확률: 5%
    Attack Time: 1.605 초
    강력한 일격으로 적들을 쓰러트립니다.
    skill can fire arrows [1]
    skill can fire wand projectiles [1]
    FairgravesThrownWeapon
    Attack, RangedAttack, Projectile, ProjectilesFromUser
    환영 무기 투척
    Base Damage: 610–914
    치명타 확률: 5%
    Attack Time: 1.605 초
    장비한 근접 무기의 형태 복제품을 투척합니다. 무기는 날아갔다가 되돌아오며 경로에 있는 적들에게 피해를 주는 회전 공격을 합니다.
    주는 피해 50% 감폭
    투사체 3개 추가 발사
    투사체 속도 20% 감소
    base is projectile [1]
    spectral throw deceleration override [50]
    SummonRagingSpiritFairgraves
    Spell, Minion, Duration, MinionsCanExplode, Trappable, Totemable, Mineable, Multicastable, Triggerable, Fire, CreatesMinion
    시전 속도: 0.8 초
    재사용 대기시간: 10 초
    스킬 2회 추가 반복
    주는 피해 20% 감폭
    소환된 격노의 유령 최대치 20
    기본 지속시간 4
    시전 속도 200% 증가
    alternate minion [1]
    ignite art variation [2]

    Object Type

    version 2
    extends "Metadata/Monsters/Skeletons/Skeleton"
    extends "Metadata/Monsters/StandaloneMonster"
    
    Actor
    {
    	slow_animations_go_to_idle = false
    }

    Object Type Codes

    version 2
    extends "Metadata/Monsters/Skeletons/Skeleton"
    extends "Metadata/Monsters/StandaloneMonster"
    
    Life
    {
    	on_death = "RemoveEffects();"
    	on_spawned_dead = "RemoveEffects();"
    }
    -- src\Data\Spectres.lua
    minions["Metadata/Monsters/Skeletons/SkeletonBossFairgravesStandalone"] = {
        name = "Captain Fairgraves",
        life = 2.25,
        fireResist = 0,
        coldResist = 0,
        lightningResist = 40,
        chaosResist = 0,
        damage = 2.04,
        damageSpread = 0.2,
        attackTime = 1.605,
        attackRange = 9,
        accuracy = 1,
        weaponType1 = "One Hand Sword",
        weaponType2 = "One Hand Axe",
        skillList = {
            "Melee",
            "FairgravesThrownWeapon",
            "SummonRagingSpiritFairgraves",
        },
        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["FairgravesThrownWeapon"] = {
        name = "Spectral Throw",
        hidden = true,
        color = "2",
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        description = "Throws a spectral copy of your melee weapon. It flies out and then returns to you, in a spinning attack that damages enemies in its path.",
        skillTypes = {
            [SkillType.Attack] = true,
            [SkillType.RangedAttack] = true,
            [SkillType.Projectile] = true,
            [SkillType.ProjectilesFromUser] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 1,
        baseFlags = {
            attack = true,
            projectile = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "active_skill_damage_+%_final",
            "number_of_additional_projectiles",
            "base_projectile_speed_+%",
            "base_is_projectile",
        },
        levels = {
            [1] = {-25, 0, 0, levelRequirement = 11, statInterpolation = {1, 1, 1},  cost = { }, },
            [2] = {-50, 2, 15, 50, -50, levelRequirement = 43, statInterpolation = {1, 1, 1, 1, 1},  cost = { }, },
            [3] = {-50, 3, 30, 50, -50, levelRequirement = 55, statInterpolation = {1, 1, 1, 1, 1},  cost = { }, },
        },
    }
    -- src\Data\Skills\spectre.lua
    skills["SummonRagingSpiritFairgraves"] = {
        name = "SummonRagingSpiritFairgraves",
        hidden = true,
        color = 4,
        baseEffectiveness = 0,
        incrementalEffectiveness = 0,
        skillTypes = {
            [SkillType.Spell] = true,
            [SkillType.Minion] = true,
            [SkillType.Duration] = true,
            [SkillType.MinionsCanExplode] = true,
            [SkillType.Trappable] = true,
            [SkillType.Totemable] = true,
            [SkillType.Mineable] = true,
            [SkillType.Multicastable] = true,
            [SkillType.Triggerable] = true,
            [SkillType.Fire] = true,
            [SkillType.CreatesMinion] = true,
        },
        statDescriptionScope = "skill_stat_descriptions",
        castTime = 0.8,
        baseFlags = {
            spell = true,
            duration = true,
        },
        baseMods = {
        },
        qualityStats = {
        },
        stats = {
            "base_skill_effect_duration",
            "base_number_of_raging_spirits_allowed",
            "skill_repeat_count",
            "base_cast_speed_+%",
            "alternate_minion",
            "ignite_art_variation",
            "active_skill_damage_+%_final",
        },
        levels = {
            [1] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 4, statInterpolation = {},  cost = { }, },
            [2] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 7, statInterpolation = {},  cost = { }, },
            [3] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 9, statInterpolation = {},  cost = { }, },
            [4] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 11, statInterpolation = {},  cost = { }, },
            [5] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 16, statInterpolation = {},  cost = { }, },
            [6] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 20, statInterpolation = {},  cost = { }, },
            [7] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 27, statInterpolation = {},  cost = { }, },
            [8] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 28, statInterpolation = {},  cost = { }, },
            [9] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 29, statInterpolation = {},  cost = { }, },
            [10] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 32, statInterpolation = {},  cost = { }, },
            [11] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 36, statInterpolation = {},  cost = { }, },
            [12] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 40, statInterpolation = {},  cost = { }, },
            [13] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 45, statInterpolation = {},  cost = { }, },
            [14] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 49, statInterpolation = {},  cost = { }, },
            [15] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 50, statInterpolation = {},  cost = { }, },
            [16] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 52, statInterpolation = {},  cost = { }, },
            [17] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 65, statInterpolation = {},  cost = { }, },
            [18] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 69, statInterpolation = {},  cost = { }, },
            [19] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 73, statInterpolation = {},  cost = { }, },
            [20] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 74, statInterpolation = {},  cost = { }, },
            [21] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 75, statInterpolation = {},  cost = { }, },
            [22] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 76, statInterpolation = {},  cost = { }, },
            [23] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 77, statInterpolation = {},  cost = { }, },
            [24] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 78, statInterpolation = {},  cost = { }, },
            [25] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 79, statInterpolation = {},  cost = { }, },
            [26] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 80, statInterpolation = {},  cost = { }, },
            [27] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 81, statInterpolation = {},  cost = { }, },
            [28] = {4000, 20, 2, 200, 1, 2, -20, levelRequirement = 82, statInterpolation = {},  cost = { }, },
        },
    }
    
    ignite art variation [2]
    IdIgniteArtVariationGhostflame_
    FamilyStatusAilmentArtVariation
    Domains몬스터 (3)
    GenerationType고유 (3)
    Req. level1
    Stats
  • ignite art variation Min: 2 Max: 2 Global
  • 몬스터가 주는 경험치 250% 증가
    monster dropped item rarity +% [4500]
    IdMonsterQuestBossAct1_
    FamilyMonsterActBoss
    Domains몬스터 (3)
    GenerationType고유 (3)
    Req. level1
    Stats
  • monster slain experience +% Min: 250 Max: 250 Global
  • monster dropped item rarity +% Min: 4500 Max: 4500 Global
  • 페어그레이브즈 선장 Topic /3 ⍟
    NPC이름
    베스텔페어그레이브즈는 선한 사람이었고 뛰어난 탐험가였어. 좋은 의미로든 나쁜 의미로든 신세계로의 문을 마구 열어댔지. 원주민들 입장에선 달갑지는 않았을 거야.

    그가 안식에 들었다는 사실만으로도 편안해지는 기분이군. 그 사람 얘기는 이쯤 하자고. 많은 이들의 귀감이었던 분이잖아. 그런 영웅을 욕보이고 싶지는 않아.
    베스텔탐험가 페어그레이브즈 말이야? 30여 년 전에 레이클라스트에 도착한 이후로 그를 봤거나, 소식을 들었다는 사람이 없던데.

    살아있는 페어그레이브즈 선장을 만났다는 거면, 그건 거짓말쟁이였겠지. 차라리 거짓말쟁이면 다행이겠군.
    낚시의 대가 크릴슨지그문트 페어그레이브즈 선장은 탐험가이자 해적으로 명성을 날렸던 사람이었지.

    다들 모르고 있겠지만, 그는 실력이 대단한 고래잡이기도 했다네. 일생에 한 번 나타나면 다행이라는 고래를 잡으러 다녔다는 게 대단하다니까. 한 마리만 잡아도 평생 잡을 물고기만큼의 돈을 벌어다 주는 게 고래거든.
    페어그레이브즈 선장 Text Audio /28 ⍟
    이름
    이 몸을 {전혀} 알아보지 못하다니 이거 놀랄 일이구먼. 그래, 내가 바로 지그문트 페어그레이브즈 선장이다. 파도를 길들이는 자이자 해적의 골칫거리며, 야만의 땅에 문명을 전달하는 자이기도 하지.

    자화자찬 하는거 말고, 여기서 뭘 하고 있냐고? 조난당했지. 예쁘장한 파란 눈을 가진 누구 때문에 말이야.
    소개
    어느 관능적인 노예 소녀 때문에 레이클라스트의 더러운 진창에서 꼼짝도 못 하게 됐어. 트라투스의 사창가에서 구해줬더니, 세상에 그 날랜 손발로 은혜를 갚더구먼. 일등 항해사를 꾀어서 나를 배신하게 만들더니 힘들게 찾아낸 올플레임을 빼앗아서 내 뒤통수를 치더라니까.

    부탁할게. 올플레임을 되찾아줘. 그 온기를 다시 느끼기 전까지는 여기 묶여있을 수밖에 없어. 저 태양이 완전히 사라지는 순간까지도 이 모양 이 꼴이겠지.
    조난
    잊어질 뻔했던 신화의 흔적을 쫓아, 제국 최심부의 무너져내린 대성당까지 갔어. 그렇게 올플레임을 손에 넣고, 그걸 순은으로 만든 등에 집어넣었지. 그게 올플레임에 반응하지 않는 유일한 물질이거든.

    올플레임은 엄청난 일을 가능케 만들어. 그 속에 깃든 힘을 다룰 수 있는 자가 주인이 된다면 말이지. 혹시나 무작정 써보려고 하지는 말고. 그러다간 산 채로 불타 죽게 될 테니까.
    올플레임
    날 유령이라고 생각했던 거야? 아니면 상태가 엄청나게 안 좋은 사기꾼이라든가? 확실히 말해두지. 둘 다 아니야.

    올플레임은 내게 특별한 능력을 줬어. 그걸 찾아와주면 그 능력의 일부를 네게 넘겨주지.
    진짜 페어그레이브즈
    살가운 이웃이 많은 동네에서도 가장 사랑스러운 이웃이지. 머베일을 만나는 것과 올플레임을 되찾는 일 사이에는 아무런 상관도 없어. 난 그냥 네가 심부름이나 잘 해줬으면 싶은데.

    하긴 그 버릇없는 노예 계집애는 머베일의 자식들에게 잡아먹혔을지도 모르겠군. 그렇다고 해도 괜찮겠지. 너 정도라면 그런 촉수 한둘쯤은 상대할 수 있어 보이니까. 하지만 올플레임을 가져간 게 머베일이라면, 그땐 정말 조심하는 게 좋을 거야. 목에 걸고 있는 물건 덕분에, 간교한 계책을 쓸 줄 알게 됐으니까 말이야.
    머베일
    역사서에는 대담한 다레소가 무릎을 꿇은 채로 머베일에게 목걸이를 바쳤다고 적혀 있더군. 레이클라스트에서 가져온 목걸이가 목에 걸리는 순간, 머베일은 노래를 부르기 시작했다지. 그 달콤한 목소리는 오리아스에서도 가장 크다고 손꼽히는 공연장을 가득 채우고도 남았으며, 가장 차가운 마음에도 온정을 불어넣는 힘이 있었다던데.

    하지만 이내 머베일은 변해가기 시작했어. 노래가 뒤틀리면서, 정신과 육체도 함께 뒤틀렸다나. 그럼에도 달콤한 목소리만큼은 여전했고 말이야. 레이클라스트에 잠든 힘들에 대해 많이 아는 건 아니지만... 머베일의 목걸이를 손에 넣는다는 건, 사이렌의 목소리 역시 손에 넣는다는 거야.
    머베일의 목걸이
    나의 올플레임. 축복이면서도, 동시에 저주인 올플레임!

    너도 불꽃의 온기를 쬐고 싶겠지? 안타깝게도 그러려면 필요한 게 있어. 올플레임에 불을 붙이려면, {생명}을 태워야 하거든. 이 근처엔 불쏘시개랄 만한 게 없으니, 눈앞에 있는 걸로 해결을 해야겠지.

    그래, 너 말이야.
    감사 인사
    너도 불꽃의 온기를 쬐고 싶겠지? 안타깝게도 그러려면 필요한 게 있어. 올플레임에 불을 붙이려면, {생명}을 태워야 하거든. 이 근처엔 불쏘시개랄 만한 게 없으니, 눈앞에 있는 걸로 해결을 해야겠지.

    그래, 너 말이야.
    감사 인사
    명예를 아는 신사로서 자네가 이해하게. 나로서도 힘든 선택이야. 힘든 때에는 냉정한 마음이 필요하다잖나. 그쪽이 내 처지였더라도 달리 행동하진 않았을걸.
    FairgravesAttacks
    익숙한 얼굴이 보이는구먼! 얘길 시작하기에 앞서... 댁을 죽이려 했던 건 인정하지. 용납할 수 없는 일이었지만, 극단적인 상황이 닥치니 실리를 추구하게 되더라고.

    내 사과를 받아주겠... 어? 지금 뭐라고 그랬어? 그냥 처음 만난 사이처럼 지내자고?

    그거 좋지!

    댁도 알아챘겠지만, 올플레임 덕분에 유예가 좀 생겼거든. 안타깝게도 반쪽짜리였지만 말이야. 덕택에 인간도 유령도 아니고, 살아있지도 죽어있지도 않은 상태가 됐지. 기분 나쁜 제약이 한둘이 아닌 상황이랄까.

    다시 만나게 된지도 얼마 되지 않아서 부탁하기가 좀 그렇긴 한데, 그게... 도움이 필요해.
    소개
    내 부탁에 흥미가 생겼나? 그거 다행이구먼.

    보답으로 이 투명한 손가락을 바삐 놀려서 선물 한두 개 정도는 마련해 놓지.

    자네는 수정으로 된 술병과 맛난 과일 정도만 가져다주면 돼. 기묘한 상황에 처해버린 나로서는 손에 넣을 수 없는... 물건들이거든.
    희망 한 모금
    대단하구먼. 살인만큼 두 사람을 끈적하게 엮는 것도 없는 법이지. 믿을만한 사람이란 건 진작 알았다니까.

    그럼 술을 만들어볼 차례로군. 자두를 술병에 쥐어짜서 즙을 내면... 이럴 수가, 순식간에 바뀌었군. 아무 힘도 들이지 않고 실상에서 허상으로 바꾼 거지. 향기도 끝내주잖아! 죽음도 이렇게 달콤하진 않을 거야. 이 술을 '제국의 잠자리 술'이라고 불러야겠구먼.

    이렇게 물건도 받아 챙겼으니, 자네에게도 성의를 보여야겠지.
    희망 한 모금
    대단하구먼. 살인만큼 두 사람을 끈적하게 엮는 것도 없는 법이지. 믿을만한 사람이란 건 진작 알았다니까.

    이렇게 물건도 받아 챙겼으니, 자네에게도 성의를 보여야겠지.
    희망 한 모금
    일을 마무리 짓고 새롭게 시작하는 날이니 건배하도록 하지. 참, 내가 이 무시무시한 술을 들이켤 때는 시선을 피하는 게 좋을 거야. 육체를 되찾는 모습이 썩 보기 좋진 않을 테니까.

    좋아! 트라투스의 본거지에서 외쳤던 구호처럼... 잔을 들어라, 계집들아!
    희망 한 모금
    이거 참, 묘한 느낌이구먼. 이건... 뭐야 이게... 뭔가 빠진 느낌이잖아. 올플레임이... 안 돼, 이럴 수는 없어! 올플레임이 꺼져가고 있어! 대체 내가 무슨 짓을...

    {넌} 대체 뭐야? 아니야, 말도 안 돼. 나는... 사라지지... 않...
    희망 한 모금
    자두에 감도는 광택을 봐. 생전 처음 보는 먹음직스러운 녀석이지? 아니라고? 희망이라는 이름의 윤기는 내 눈에만 보이는 모양이구먼.
    희망 한 모금
    한 번 살펴보셔. 이게 영혼의 술병이야. 오래전에 봤을 때만큼이나 아름다운 자태로군. 사람은 책망할 수 있어도, 그 사람의 작품은 책망하지 않는 법이거든.
    희망 한 모금
    말라카이에 대해선 들어봤겠지? 이단이나 마찬가지인 녀석이었어. '유령의 술'이라고 불리는 물질을 마셔서 저세상을 훔쳐보려고 했지. 그래서 만든 게 영혼의 술병이야. 지난번에 들렀을 때 직접 봤는데, 액체를 넣으니까 그게 반쯤은 영적인 상태로 변해버리더라고.

    그 물건이 왜 필요한지는 짐작이 가겠지? 이 몸뚱이로는 일반적인 술을 마실 수가 없거든. 그래서 지금 역시 술이 고픈 상태고 말이야.

    영혼의 술병은 장터에 숨겨뒀어. 양심이라곤 하나도 없는 선원 녀석들이 탐내지 못하게 말이야. 문장이 새겨진 곳으로 가서, 파도 위에서 춤추는 사자를 찾아봐.
    영혼의 술병
    정화 봉기가 시작되기 하루 전, 치투스 황제는 자기가 임명한 시장에게 뒤를 찔려 죽었어. 비탄에 잠긴 마석병들은 황제를 황실 정원에 묻고 그 위에 자두나무를 심어 문상객에게 황제의 영광을 맛볼 수 있도록 했지.

    그 나무를 찾아낸 나는 부하에게 자두를 먹어보라 했는데, 찰나의 순간에 그만큼 고통스러워하는 광경은 처음 봤다니까.

    그런 걸 본 마당에, 이런 부탁을 하는 건 좀 이상하긴 하네만... 치투스의 자두를 가져와 줬으면 좋겠어.
    치투스의 자두
    이 몸뚱이에는 끔찍한 제약이 걸려 있어. 지난번보단 나아졌지만, 난 이 세상의 구석구석에 발을 들이밀었던 사람이었단 말이야. 이 상태로는 겨우 길가로 나갈 수준밖에 안 돼. 사이렌의 만에서 여기까지 온 것만 해도 거의 기적이라고.

    그래, 이번엔 진짜야. 죽음을 마셔 보겠어. 겁낼 게 뭐 있겠나. 올플레임이 날 되살릴 텐데. 운이 따라준다면 자유도 쟁취할 수도 있겠지. 하지만 그렇게 하려면 일단 {죽어야} 해. 그래야 올플레임이 가장 맹렬하게 반응할 거거든. 이 비극적인 상황을 끝낼 수 있는 건 치투스의 과실뿐이란 얘기야.

    본래 인생이란 고통스런 선택의 연속 아니겠어?
    부활
    사안이라면 30년 전에 와본 적이 있어. 산 송장이라고 불리는 무시무시한 놈들이 강 근처의 하수도에서 기어 나와 몇 명만 남겨두고 선원을 전부 죽여버린 일이 있었지.

    산 송장은 인간의 모습만 흉내 낸 악독한 놈들이야. 나처럼 예의 바르고 정직한 망령과는 다르다고.
    산 송장
    사안에는 답을 찾으러 왔어. '영원한 제국이 어떻게 몰락했는가?'란 질문에 대한 답 말이야.

    탐사를 진행하던 중에, 액시옴 수용소에서 움브라의 샤브론이란 마녀가 쓴 글귀를 발견했어. 거기에는 초자연적인 존재의 정점에 선 게 사안의 말라카이라고 적혀 있더군.

    말라카이가 대재앙의 장본인이라는 문구는 없었지만, 녀석이 대재앙에 어느 정도 기여했을 거라는 확신이 들더라고.
    Fairgraves2OnEmpire

    Fairgraves_farewell1.ogg

    Fairgraves_farewell2.ogg

    Fairgraves_farewell3.ogg

    Fairgraves_greeting1.ogg

    Fairgraves_greeting2.ogg

    Fairgraves_greeting3.ogg
    Edit

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