Renewal
.:Renewal Item Database:.
Weapon - Book

Paradise Taekwon Power Book [0]   [One Hand]   Item ID# 540030 (2Para_Book2_SG)
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
0
Attack
160
Required Lvl
45
Weapon Lvl
3
Slot
0
Refineable
No
Applicable Jobs
Star Gladiator
Description
A book made by the Paradise Group.

ATK +3%

Base Level at least 60:
Increases melee physical damage by 10%.

Base Level at least 75:
Increases damage of Heel Drop and Counter Kick by 10%.

Base Level at least 90:
Increases damage of Heel Drop and Counter Kick by additional 15%.
Item Script
{ bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) { bonus2 bSkillAtk,"TK_DOWNKICK",10; bonus2 bSkillAtk,"TK_COUNTER",10; } if (BaseLevel>=90) { bonus2 bSkillAtk,"TK_DOWNKICK",15; bonus2 bSkillAtk,"TK_COUNTER",15; } },{},{}
Dropped By No Result

Patent Exorcist's Bible [2]   [One Hand]   Item ID# 540011 (Up_Demon_Hunting_Bible)
Awakened Exorcist's Bible
Type
Weapon
Class
Book
Buy
20z
Sell
10z
Weight
70
Attack
205 / MATK 190
Required Lvl
150
Weapon Lvl
4
Slot
2
Applicable Jobs
Arch Bishop
Description
The Bible on Demon Era, reportedly used by ancient high priests.
Seeing that the divine power was inhabited, it began to exert its natural power.
It resonates with Great Hero's Boots.

MATK +190.
For each 2 refine levels: MATK +15.
For each 3 refine levels: Increases damage of Duple Light and Judex by 25%.

Refine Level +7:
ASPD +10% (After attack delay -10%).
Increases Holy elemental magic damage by 15%.

Refine Level +9:
Increases damage of Duple Light and Judex by additional 30%.

Refine Level +11:
Physical attacks have a chance to autocast Level 5 Adoramus (If you learned a higher Level, it will auto cast that Level instead.).

When equipped with Great Hero's Boots:
INT +10, MATK +7%.
Item Script
expand to view script
{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11) { .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } },{},{}
Dropped By No Result

Patent One Sky One Sun [2]   [One Hand]   Item ID# 540010 (Up_OneSkyOneSun)
Awakened One Sky One Sun
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
110
Attack
200
Required Lvl
150
Weapon Lvl
4
Slot
2
Applicable Jobs
Star Emperor
Description
An ancient book titled The Only Sun on the Sky.
It is not known when anyone wrote down, but it contains knowledge of the heavenly bodies.
Seeing the intense energy of the sun, it began to exert its natural power.
It resonates with Great Hero's Boots.

For each 2 Refine Levels:
ATK +15

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

Refine Level +7:
Increases damage of Prominence Kick by 20%.
ASPD +10% (Decreases after attack delay by 10%).

Refine Level +9:
Increases damage of Solar Burst by 25%.

Refine Level +11:
Increases physical damage against enemies of enemies of every race by 15%.

When equipped with Great Hero's Boots:
STR +10, ATK +7%.
Item Script
expand to view script
{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; } },{},{}
Dropped By No Result

Poenitentia Codex [2]   [One Hand]   Item ID# 540014 (Poenitentia_Codex)
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
160
Attack
150 / MATK 215
Required Lvl
230
Weapon Lvl
5
Slot
2
Applicable Jobs
Elemental Master
Description
A book containing the pain of bereavement.

Indestructible in battle

MATK +215

MATK +10%

Increases damage of Diamond Storm and Terra Drive by 10%.

For each 2 Refine Levels:
Increases damage of Diamond Dust and Earth Grave by 3%.

Refine Level +7:
Decreases variable cast time by 10%.

Refine Level +9:
Increases damage of Diamond Dust and Earth Grave by additional 25%.

Refine Level +11:
Decreases Diamond Dust and Earth Grave skill cooldown by 2 seconds.

[Bonus by Grade]
[Grade D]: Damage of Diamond Storm and Terra Drive +5%.
[Grade C]: Damage of Diamond Storm and Terra Drive +8%, S.MATK +1.
[Grade B]: Damage of Diamond Storm and Terra Drive +12%, SPL +1.
Item Script
expand to view script
{ .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; bonus2 bSkillAtk,"EM_TERRA_DRIVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",3*(.@r/2); bonus2 bSkillAtk,"SO_EARTHGRAVE",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"SO_DIAMONDDUST",25; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; if (.@r>=11) { bonus2 bSkillCooldown,"SO_DIAMONDDUST",-2000; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",5; bonus2 bSkillAtk,"EM_TERRA_DRIVE",5; if (.@g >= ENCHANTGRADE_C) { bonus bSmatk,1; bonus2 bSkillAtk,"EM_DIAMOND_STORM",8; bonus2 bSkillAtk,"EM_TERRA_DRIVE",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"EM_DIAMOND_STORM",12; bonus2 bSkillAtk,"EM_TERRA_DRIVE",12; } } } },{},{}
Dropped By No Result

Poenitentia Liber [2]   [One Hand]   Item ID# 540015 (Poenitentia_Liber)
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
100
Attack
230
Required Lvl
230
Weapon Lvl
5
Slot
2
Applicable Jobs
Cardinal
Description
A book containing the pain of bereavement.

Indestructible in battle

MATK +215

ATK +5%
MATK +5%

Increases damage of Petitio by 10%.

For each 2 Refine Levels:
Increases damage of Duple Light by 3%.

Refine Level +7:
ASPD +10% (Decreases after attack delay by 10%).

Refine Level +9:
Increases damage of Duple Light by additional 30%.

Refine Level +11:
Increases magical damage with Holy element by 15%.

[Bonus by Grade]
[Grade D]: Damage of Petitio +5%.
[Grade C]: Damage of Petitio +8%, S.MATK +1.
[Grade B]: Damage of Petitio +12%, SPL +1.
Item Script
expand to view script
{ .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bAtkRate,5; bonus bMatk,215; bonus2 bSkillAtk,"CD_PETITIO",10; bonus2 bSkillAtk,"AB_DUPLELIGHT",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",30; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"CD_PETITIO",5; if (.@g >= ENCHANTGRADE_C) { bonus bSmatk,1; bonus2 bSkillAtk,"CD_PETITIO",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"CD_PETITIO",12; } } } },{},{}
Dropped By No Result

Poenitentia Radius [2]   [One Hand]   Item ID# 540044 (Poenitentia_Radius)
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
90
Attack
260
Required Lvl
230
Weapon Lvl
5
Slot
2
Applicable Jobs
Star Emperor
Description
A book containing the pain of bereavement.

ATK +10%

Increases damage of Sunset Blast and Dawn Break by 10%.

For each 2 Refine Levels:
Increases damage of Solar Burst and Full Moon Kick by 3%.

Refine Level +7:
Increases melee physical damage by 10%.

Refine Level +9:
Increases damage of Solar Burst and Full Moon Kick by additional 25%.

Refine Level +11:
Increases physical damage against enemies of every size by 15%.

[Bonus by Grade]
[Grade D]: Damage of Sunset Blast and Dawn Break +5%.
[Grade C]: Damage of Sunset Blast and Dawn Break +3%, P.ATK +1.
[Grade B]: Damage of Sunset Blast and Dawn Break +5%, POW +1.
Item Script
expand to view script
{ .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,10; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",10; bonus2 bSkillAtk,"SKE_DAWN_BREAK",10; bonus2 bSkillAtk,"SJ_SOLARBURST",3*(.@r/2); bonus2 bSkillAtk,"SJ_FULLMOONKICK",3*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",25; bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SKE_SUNSET_BLAST",5; bonus2 bSkillAtk,"SKE_DAWN_BREAK",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",3; bonus2 bSkillAtk,"SKE_DAWN_BREAK",3; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",5; bonus2 bSkillAtk,"SKE_DAWN_BREAK",5; } } } },{},{}
Dropped By No Result

Pollux Book [1]   [One Hand]   Item ID# 28643 (Pollux_Book_J)
Type
Weapon
Class
Book
Buy
20z
Sell
10z
Weight
50
Attack
10
Weapon Lvl
4
Slot
1
Applicable Jobs
Priest
Sage
Star Gladiator
Description
Not Available

[iRO Description]
Not Available
Item Script
expand to view script
{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,50+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bAtkRate,50; bonus bSPDrainValue,2; bonus2 bSubClass,Class_Boss,10; autobonus "{ bonus bBaseAtk,150; }",20,3000,BF_WEAPON; if (.@r >=7) { .@val = 50; if (.@r>=9) .@val = 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } },{},{}
Dropped By No Result

Principles of Magic [2]   [One Hand]   Item ID# 1572 (Principles_Of_Magic)
Type
Weapon
Class
Book
Buy
20z
Sell
10z
Weight
30
Attack
60 / MATK 160
Required Lvl
60
Weapon Lvl
3
Slot
2
Property
Neutral
Applicable Jobs
Priest
Sage
Star Gladiator
Description
This helps students study and build a stroung foundation of using magic.
If you're having trouble with using... - Author : Sage Shawn.

MATK + 160, INT +3, SP Recovery +5%.

If equipped with Librarian Glove and Pocket Watch,
INT +5, Max HP +700, ASPD +5%.

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

Prisoner's Diary [2]   [One Hand]   Item ID# 28619 (Prisoner_Dairy)
Prisoner Diary
Type
Weapon
Class
Book
Buy
50000z
Sell
25000z
Weight
80
Attack
210
Required Lvl
175
Weapon Lvl
3
Slot
2
Applicable Jobs
Priest
Sage
Star Gladiator
Description
There are traces of prisoners who were imprisoned in small numbers and secretly avoided the guard's eyes on this Dairy.

MaxHP +5%, MaxSP +5%.
Every 2 refine levels, ATK + 20.

Refine Level +7:
Increases physical and magical damage against Undead and Demon monsters by 10%.

Refine Level +9:
Increases physical and magical damage against Undead and Demon monsters by additional 15%.

Refine Level +11:
Increases physical and magical damage against Undead and Shadow elemental monsters by 15%.
Item Script
expand to view script
{ .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; },{},{}
Dropped By

Raijin's Lineage [2]   [One Hand]   Item ID# 1592 (Thor_Pedigree_Book)
Genealogy of Thunder
Type
Weapon
Class
Book
Buy
10z
Sell
5z
Weight
40
Attack
90 / MATK 130
Required Lvl
27
Weapon Lvl
4
Slot
2
Property
Wind
Applicable Jobs
Priest
Sage
Star Gladiator
Description
A book that describe about communicating with god of thunder. Those who read this will be blessed with the power of thunder.

MATK +130, INT +3.
Lightning Bolt damage +5%.
Increases Lightning Bolt damage by 1% for every 1 refine level.

Indestructible
Item Script
{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; },{},{}
Dropped By No Result

Refined Hardcover Book [0]   [One Hand]   Item ID# 1567 (Hardback_C)
Type
Weapon
Class
Book
Buy
1z
Sell
0z
Weight
0
Attack
168 / MATK 100
Weapon Lvl
4
Slot
0
Refineable
No
Applicable Jobs
Priest
Sage
Star Gladiator
Description
Rental Items
A thick and heavy hardcover book that could really do some hurt if swung around.
STR + 5, DEX + 2, MATK + 100
Impossible to refine this item.
Item Script
{ bonus bStr,5; bonus bDex,2; },{},{}
Dropped By No Result

Relapse Book [2]   [One Hand]   Item ID# 540043 (Fourth_1h_Manual)
Type
Weapon
Class
Book
Buy
n/a
Sell
n/a
Weight
130
Attack
190
Required Lvl
200
Weapon Lvl
5
Slot
2
Applicable Jobs
Star Emperor
Description
A weapon that was restored by using ether to restore a weapon eroded by unclean energy.
New abilities that had not been discovered before began to emerge.

Indestructible in battle

For each 2 Refine Levels:
Increases damage of Noon Blast by 5%.

For each 4 Refine Levels:
Increases melee physical damage by 3%.
Item Script
{ bonus bUnbreakableWeapon; bonus bShortAtkRate,3*(getrefine()/4); },{},{}
Dropped By No Result

« First < 456789101112 >
back to top