Renewal
.:Renewal Item Database:.
Weapon - One-handed Sword

Sealed Magic Sword [2]   [One Hand]   Item ID# 13460 (Sealed_Magic_Sword)
Type
Weapon
Class
One-handed Sword
Buy
n/a
Sell
n/a
Weight
150
Attack
100
Required Lvl
100
Weapon Lvl
4
Slot
2
Applicable Jobs
High Swordman
High Merchant
High Thief
Lord Knight
Whitesmith
Assassin Cross
Paladin
Stalker
Creator
Description
A magic sword sealed with powerful seal.
It's not easy to draw the true power of this sword.
Max SP -100.
Adds a chance to auto cast Level 5 Fire Bolt when dealing physical attacks.
Refine level +7: MATK +85, MaxSP +50.
Refine level +10: ASPD +1, MATK +45, MaxSP +50.
Item Script
{ .@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp; },{},{}
Dropped By

Sealed Maximum Sword [2]   [One Hand]   Item ID# 13462 (Sealed_Max_Sword)
Type
Weapon
Class
One-handed Sword
Buy
n/a
Sell
n/a
Weight
150
Attack
100
Required Lvl
100
Weapon Lvl
4
Slot
2
Applicable Jobs
High Swordman
High Merchant
High Thief
Lord Knight
Whitesmith
Assassin Cross
Paladin
Stalker
Creator
Description
A maximum sword sealed with powerful seal.
It's not easy to draw the true power of this sword.
Max HP -1000.
Adds a chance to auto cast Level 5 Cold Bolt when dealing physical attacks.

Refine level +7: ATK +65, MaxHP +500.
Refine level +10: ASPD +1, ATK +45, MaxHP +500.
Item Script
{ .@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; } },{},{}
Dropped By

Sealed Red Lotus Sword [2]   [One Hand]   Item ID# 13495 (Evt_Bluefire_Sword)
Type
Weapon
Class
One-handed Sword
Buy
1z
Sell
0z
Weight
0
Attack
180
Required Lvl
99
Weapon Lvl
4
Slot
2
Applicable Jobs
Genetic
Description
A sword with a blue flame when removed from the hilt.

For each 2 refine levels, ATK +10.
For each 3 refine levels, long range physical attack +4%.

Refine Level +7, Cart Cannon SP cost -10%.
Refine Level +9, Cart Cannon damage +15%.
Item Script
{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } },{},{}
Dropped By No Result

Slate Sword [2]   [One Hand]   Item ID# 500004 (Slate_Sword)
Type
Weapon
Class
One-handed Sword
Buy
n/a
Sell
n/a
Weight
100
Attack
190
Required Lvl
100
Weapon Lvl
4
Slot
2
Applicable Jobs
Genetic
Description
A sword made of an ancient slab.
It resonates with Ancient Hero's Boots.

Every 2 refine levels, ATK + 10.
Every 3 refine levels, increases Cart Tornado damage by 10%.

Refine Level +9, increases Cart Tornado damage by additional 20%.
Refine Level +11, reduces after skill delay by 10%.

When equipped with Ancient Hero's Boots:
Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical or magical damage.
Item Script
{ .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CART_TORNADO",20; } if (.@r>=11) { bonus bDelayrate,-10; } },{},{}
Dropped By No Result

Slate Sword-LT [2]   [One Hand]   Item ID# 500040 (Slate_Sword_LT)
Type
Weapon
Class
One-handed Sword
Buy
n/a
Sell
n/a
Weight
120
Attack
205
Required Lvl
190
Weapon Lvl
5
Slot
2
Applicable Jobs
Genetic
Description
An improved version of a sword made using an ancient stone slab.
Resonates with Hero's Boots-LT.

ATK +5%

Base Level at least 210:
POW +2, P.ATK +1.

For each 2 Refine Levels:
ATK +15

For each 3 Refine Levels:
Increases melee physical damage by 4%.

Refine Level +7:
Increases damage of Cart Tornado by 25%.
Increases damage of Hell's Plant by 30%.
Decreases variable cast time by 10%.

Refine Level +9:
Increases damage of Cart Tornado by additional 20%.
Decreases after skill cast delay by 10%.

Refine Level +11:
MaxHP +10%
Increases damage of Cart Tornado by additional 20%.
Decreases after skill cast delay by additional 5%.

When equipped with Hero's Boots-LT:
ATK +10%, P.ATK +2.

[Bonus by Grade]
[Grade D]: ATK +3%
[Grade C]: melee physical damage +15%. P.ATK +1
[Grade B]: POW +3, P.ATK +2.
Item Script
expand to view script
{ .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillAtk,"GN_HELLS_PLANT",30; bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"GN_CART_TORNADO",20; if (.@r>=11) { bonus bDelayrate,-5; bonus bMaxHPrate,10; bonus2 bSkillAtk,"GN_CART_TORNADO",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bShortAtkRate,4*(.@r/3); },{},{}
Dropped By No Result

Solar Sword [0]   [One Hand]   Item ID# 1136 (Solar_Sword)
Type
Weapon
Class
One-handed Sword
Buy
20z
Sell
10z
Weight
120
Attack
85
Required Lvl
40
Weapon Lvl
4
Slot
0
Property
Fire
Applicable Jobs
Swordman
Merchant
Thief
Knight
Blacksmith
Assassin
Crusader
Rogue
Alchemist
Description
An one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor.
Regains 1% of the damage inflicted on its target as HP with each attack.
Drains 15 SP from its owner every 10 seconds.
Item Script
{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{}
Dropped By

Solar Sword [0]   [One Hand]   Item ID# 13403 (Solar_Sword_C)
Type
Weapon
Class
One-handed Sword
Buy
2z
Sell
1z
Weight
0
Attack
120
Weapon Lvl
4
Slot
0
Property
Fire
Refineable
No
Applicable Jobs
Swordman
Merchant
Thief
Knight
Blacksmith
Assassin
Crusader
Rogue
Alchemist
Description
Rental Items
An one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor.
Regains 1% of the damage inflicted on its target as HP with each attack.
Drains 15 SP from its owner every 10 seconds.
Impossible to refine this item.
Item Script
{ bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1; },{},{}
Dropped By No Result

Solar Sword [0]   [One Hand]   Item ID# 13427 (F_Solar_Sword_C)
Rental Solar Sword
Type
Weapon
Class
One-handed Sword
Buy
2z
Sell
1z
Weight
0
Attack
120
Weapon Lvl
4
Slot
0
Property
Fire
Refineable
No
Applicable Jobs
Swordman
Merchant
Thief
Knight
Blacksmith
Assassin
Crusader
Rogue
Alchemist
Description
Rental Item
A one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor.

Regains 1% of the damage inflicted on its target as HP with each attack.
Drains 15 SP from its owner every 10 seconds.

This item cannot be Dropped or Traded.
Item Script
{ bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000; },{},{}
Dropped By No Result

Solar Sword [0]   [One Hand]   Item ID# 13430 (E_Solar_Sword_C)
Type
Weapon
Class
One-handed Sword
Buy
2z
Sell
1z
Weight
0
Attack
120
Weapon Lvl
4
Slot
0
Refineable
No
Applicable Jobs
Swordman
Merchant
Thief
Knight
Blacksmith
Assassin
Crusader
Rogue
Alchemist
Description
Not Available

[iRO Description]
Not Available
Item Script
{ bonus bAtkEle,Ele_Fire; },{},{}
Dropped By No Result

Solid Edge [2]   [One Hand]   Item ID# 500044 (Solid_Edge)
Type
Weapon
Class
One-handed Sword
Buy
n/a
Sell
n/a
Weight
110
Attack
200
Required Lvl
220
Weapon Lvl
5
Slot
2
Description
A blade made of refined clock tower parts and quenched with etheric power.
It supplemented the shortcomings of the existing Fortified Edge.

For each 2 Refine Levels:
Increases damage of Double Bowling Bash by 6%.

For each 3 Refine Levels:
Increases damage of Mega Sonic Blow by 8%.

For each 4 Refine Levels:
Increases melee physical damage by 4%.

[Bonus by Grade]
[Grade D]: POW +2
[Grade C]: Damage of Double Bowling Bash +10%.
[Grade B]: P.ATK +2.
Item Script
expand to view script
{ .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",6*(.@r/2); bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",8*(.@r/3); bonus bShortAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } },{},{}
Dropped By No Result

Star Dust Blade [1]   [One Hand]   Item ID# 1148 (Star_Dust_Blade)
Type
Weapon
Class
One-handed Sword
Buy
20z
Sell
10z
Weight
100
Attack
140
Required Lvl
45
Weapon Lvl
4
Slot
1
Applicable Jobs
Novice
Supernovice
Description
A special sword whose blade is made from a fallen meteorite.
During the night, the blade part is said to shine brightly like a star.
Causes Stun effect to enemies by 5% chance.
Indestructible (except in upgrade attempts).
Item Script
{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{}
Dropped By
Obtainable FromOld Blue Box, Old Violet Box

Star Dust Blade [3]   [One Hand]   Item ID# 13446 (Star_Dust_Blade_)
Type
Weapon
Class
One-handed Sword
Buy
1z
Sell
0z
Weight
100
Attack
140
Required Lvl
45
Weapon Lvl
4
Slot
3
Applicable Jobs
Novice
Supernovice
Description
A spectacular sword with a blade forged out of meteorite that shines with starlight during the night.

Adds 5% chance of inflicting Stun status on target when dealing physical attack.
Indestructible
Item Script
{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{}
Dropped By No Result

< 123 >
back to top