Renewal
.:Renewal Item Database:.
Items Listed From A-Z

Sealed MasterSmith Card [Weapon]   Item ID# 4502 (Sealed_B_Harword_Card)
Type
Card
Class
Weapon Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Half Holgren
Description
Adds a 5% chance of destroying an enemy's weapon and a 4% chance of destroying its armor each time the wearer dealing physical attacks.

If the compounded item is refined to +15 or higher:
The above effect will become 8% on weapon and 6% on armor instead.
Item Script
{ .@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:400); },{},{}
Dropped By No Result

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 Maya Card [Shield]   Item ID# 27212 (SLD_Maya_Card)
Type
Card
Class
Shield Card
Buy
n/a
Sell
n/a
Weight
1
Pre/Suffix
Half Reflect
Description
Has a 15% chance to reflect single target magic attacks received by the user.

Refine Level +15: The chance is increased to 30%.

Warning - Silit Pong Bottle does not work on removing this card!
Item Script
{ if (getrefine()>=15) { bonus bMagicDamageReturn,30; } else { bonus bMagicDamageReturn,15; } },{},{}
Dropped By No Result

Sealed Maya Card [Shield]   Item ID# 300327 (SLD_Maya_Card_J)
Type
Card
Class
Shield Card
Buy
20z
Sell
10z
Weight
1
Description
Not Available

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

Sealed Memory of Thanatos Card [Weapon]   Item ID# 300338 (SLD_Thanatos_Card_J)
Type
Card
Class
Weapon Card
Buy
20z
Sell
10z
Weight
1
Description
Not Available

[iRO Description]
Not Available
Item Script
{ bonus2 bIgnoreDefRaceRate,RC_All,100; bonus bDef,-30; bonus bFlee,-30; bonus bSPDrainValue,-1; },{},{}
Dropped By No Result

Sealed Mistress Card [Headgear]   Item ID# 4484 (Sealed_Mistress_Card)
Type
Card
Class
Headgear Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
of Half Gemstone
Description
Nullify the Gemstone requirement of certain skills.
Increases SP cost by 50%.

[If card is compounded into an item with refine level +15 or higher]
Reduces SP cost by 15%. (The combined effect on SP cost will be +35%.)
Item Script
{ bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50); },{},{}
Dropped By No Result

Sealed Mistress Card [Headgear]   Item ID# 300328 (Sealed_Mistress_Card_J)
Type
Card
Class
Headgear Card
Buy
20z
Sell
10z
Weight
1
Description
Not Available

[iRO Description]
Not Available
Item Script
{ bonus bNoGemStone; bonus bUseSPrate,100; },{},{}
Dropped By No Result

Sealed Moonlight Flower Card [Footgear]   Item ID# 4490 (Sealed_M_Flower_Card)
Sealed M Flower Card
Type
Card
Class
Footgear Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Half Hasty
Description
Enables the use of Level 1 Increase Agility.

If compounded item is refined to +15 or higher:
Enables the use of Level 5 Increase Agility.
Item Script
{ skill "AL_INCAGI",((getrefine()>14)?5:1); },{},{}
Dropped By No Result

Sealed Moonlight Flower Card [Footgear]   Item ID# 300139 (Sealed_M_Flower_Card_J)
Type
Card
Class
Footgear Card
Buy
n/a
Sell
n/a
Weight
1
Description
Not Available

[iRO Description]
Not Available
Item Script
{ bonus bSpeedRate,25; bonus bHit,-50; },{},{}
Dropped By No Result

Sealed Moonlight Flower Scroll    Item ID# 22735 (Sealed_M_Flower_Scroll)
Type
Cash Shop Item
Class
n/a
Buy
10z
Sell
5z
Weight
1
Description
A limited edition of sealed moonlight flower Scroll. Contain one of:
Sealed moonlight flower card
Safe to 9 Weapon Certificate
Safe to 9 Armor Certificate
Infinity Shadow Earring
Costume Lolita Ten Gallon Hat
Infinite Giant Fly Wing Box V
Blacksmith's Blessing
Gold and other rare items.
Item Script
{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; },{},{}
Dropped By No Result

Sealed Narcissus Bow [2]   [Two Handed]   Item ID# 18183 (Evt_Narcis_Bow)
Type
Weapon
Class
Bow
Buy
n/a
Sell
n/a
Weight
0
Attack
180
Required Lvl
99
Weapon Lvl
4
Slot
2
Range
5
Applicable Jobs
Ranger
Shadow Chaser
Minstrel / Wanderer
Description
A bow that contains the history of ancient war hero.
It resonates with Ancient Hero's Boots.

For each 2 refine levels, ATK +10.
For each 3 refine levels, increases ranged physical attack by 4%.

Refine Level +7, Severe Rainstorm damage +10%.
Refine Level +9, Severe Rainstorm Cooldown reduces by 2 seconds.
Item Script
{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; } if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } },{},{}
Dropped By No Result

Sealed Nightmare Amon Ra Card [Armor]   Item ID# 300209 (SLD_Grave_Amon_Ra_Card)
Type
Card
Class
Armor Card
Buy
n/a
Sell
n/a
Weight
1
Pre/Suffix
Mild Punishment
Description
Increases Magical Damage against Shadow and Undead elemental by 25%.
Increases Magical Damage against monsters of Demon and Undead race by 25%.

Refine Level +15:
Increases Magical Damage against Shadow and Undead elemental by additional 12%.
Increases Magical Damage against monsters of Demon and Undead race by additional 12%.

Warning - Silit Pong does not work on removing this card!
Item Script
{ .@r = (getrefine()>14?37:25); bonus2 bMagicAddRace,RC_Demon,.@r; bonus2 bMagicAddRace,RC_Undead,.@r; bonus2 bMagicAddEle,Ele_Dark,.@r; bonus2 bMagicAddEle,Ele_Undead,.@r; },{},{}
Dropped By No Result

« First < 3334353637383940414243 > Last »
back to top