Renewal
.:Renewal Item Database:.
Card

Ominous Assaulter Card [Weapon]   Item ID# 27117 (OminousAssulter_Card)
Type
Card
Class
Weapon Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Lethal
Description
Increases critical attack damage by 10%.

When equipped with Whip, Musical Instrument, Book, Two-Handed Sword or Two-Handed Spear class weapons:
CRIT +5
Every refine level:
ATK +3
Increases critical attack damage by 1%.

More Information on Combo:
Item Script
expand to view script
{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r); },{},{}
Dropped By

Ominous Freezer Card [Footgear]   Item ID# 27118 (OminousFreezer_Card)
Type
Card
Class
Footgear Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Of Pierce
Description
MaxHP +10%, STR +2.

If Base Level at least 160:
Increases Hundred Spear damage by 10%.
Increases Over Brand damage by 10%.

Refine Level +9:
Increases Hundred Spear damage by 10%.
Increases Over Brand damage by 10%.
Item Script
{ bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; } },{},{}
Dropped By

Ominous Heater Card [Accessory]   Item ID# 27116 (OminousHeater_Card)
Type
Card
Class
Accessory Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Dual Critical
Description
CRIT +3
Increases critical attack damage by 5%.

When combined with Ominous Assaulter Card:
CRIT +2
Increases critical attack damage by 2%.

More Information on Combo:
Item Script
{ bonus bCritical,3; bonus bCritAtkRate,5; },{},{}
Dropped By

Ominous Permeter Card [Headgear]   Item ID# 27115 (OminousPermeter_Card)
Type
Card
Class
Headgear Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Sagacious
Description
INT +1, MaxSP +80.
Every 2 refine levels: MaxSP +10.

Refine Level +7:
Increases SP regen by 30%.

When combined with Ominous Solider Card:
Every 3 refine levels of armor:
MaxHP +1%
Every 2 refine levels of helmet:
MaxSP +5

More Information on Combo:
Item Script
{ .@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; } },{},{}
Dropped By

Ominous Solider Card [Armor]   Item ID# 27114 (OminousSolider_Card)
Type
Card
Class
Armor Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Indomitable
Description
MaxHP +10%, DEF +50.
Every 3 refine levels: MaxHP+ 1%.

If Base Level at least 160:
DEF+50, VIT+3.

More Information on Combo:
Item Script
{ bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val; },{},{}
Dropped By

Ominous Turtle General Card [Shield]   Item ID# 27119 (OminousTurtleG_Card)
Type
Card
Class
Shield Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Of Turtle Shell
Description
DEF +30, MDEF +5.
Reduces damage taken from all size monsters by 25%.

When combined with Turtle General Card:
HIT +25
Reduces damage taken from all size monsters by 5%.
Increases physical damage inflicted on all size monsters by 20%.

More Information on Combo:
Item Script
{ bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25; },{},{}
Dropped By

Omniscience Seeker    Item ID# 311883 (aegis_311883)
Type
Card
Class
Enchant
Buy
n/a
Sell
n/a
Weight
0
Description
Not Available

[iRO Description]
Not Available
Item Script
{ bonus bDef,50; bonus bMdef,10; },{},{}
Dropped By No Result

One-Eye Dollocaris Card [Garment]   Item ID# 300375 (One_E_Dollocaris_Card)
One Eye Dollocaris Card
Type
Card
Class
Garment Card
Buy
n/a
Sell
n/a
Weight
1
Pre/Suffix
Higher Level
Description
Decreases damage taken from Neutral element attacks by 20%.

Up to max +11 Refine Level:
Decreases magical damage with Shadow, Holy, Ghost and Neutral element by 25%.

Refine Level +12:
Increases magical damage with Shadow, Holy, Ghost and Neutral element by 25%.

When compounded equipment's Armor Level is 2:
Increases magical damage with Shadow, Holy, Ghost and Neutral element by 8%.
Item Script
expand to view script
{ bonus2 bSubEle,Ele_Neutral,20; .@r = getrefine(); .@rate = ((getrefine() < 12) ? 25 : -25); if (getequiparmorlv() == 2) { .@rate += 8; } bonus2 bMagicSubDefEle,Ele_Dark,.@rate; bonus2 bMagicSubDefEle,Ele_Holy,.@rate; bonus2 bMagicSubDefEle,Ele_Fire,.@rate; bonus2 bMagicSubDefEle,Ele_Neutral,.@rate; },{},{}
Dropped By No Result

Only One Bullet Tuning Device    Item ID# 311055 (Gear_NW1)
Type
Card
Class
Enchant
Buy
n/a
Sell
n/a
Weight
0
Description
Increases damage of Only One Bullet by 5%.

[Bonus by Weapon Grade]
[Grade D]: Damage of Only One Bullet +3%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Only One Bullet +4%.
[Grade A]: Damage of Only One Bullet +6%.
Item Script
expand to view script
{ .@g = getenchantgrade(); bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; if (.@g >= 1) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",3; if (.@g >= 2) { bonus2 bAddSize,Size_All,10; if (.@g >= 3) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",4; if (.@g >= 4) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",6; } } } } },{},{}
Dropped By No Result

Orc Archer Card [Accessory]   Item ID# 4256 (Orc_Archer_Card)
Type
Card
Class
Accessory Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Desirable
Description
Every time you kill a DemiHuman monster, there is a 1% chance of gaining a "Box of Panting".
Item Script
{ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; },{},{}
Dropped By
Obtainable FromOld Card Album

Orc Baby Card [Garment]   Item ID# 4375 (Orc_Baby_Card_Card)
Type
Card
Class
Garment Card
Buy
20z
Sell
10z
Weight
1
Pre/Suffix
Extra High Level
Description
Increase resistance to Neutral Property attacks by 10%.
FLEE +10
[When compounded into an item with refine rate of +9 or higher]
Resistance against Neutral Property attacks +5%.
FLEE +5

More Information on Combo:
Item Script
{ .@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i; },{},{}
Dropped By
Obtainable FromOld Card Album

Orc General Card [Footgear]   Item ID# 300295 (General_Orc_Card)
General Orc Card
Type
Card
Class
Footgear Card
Buy
n/a
Sell
n/a
Weight
1
Pre/Suffix
Animal Killer
Description
MATK +5%

Refine Level +7:
Increases magical damage against monsters of Brute race by 10%.

Refine Level +9:
Increases magical damage against monsters of Brute race by additional 7%.
Item Script
{ .@r = getrefine(); bonus bMatkRate,5; if (.@r>=7) { bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Player_Doram,7; } },{},{}
Dropped By No Result

< 1234 >
back to top