Crimson Poncho

Item ID 2597 Name Crimson Poncho
This muffler is stained with blood.
_______________________
Increases Critical Damage by 3%.
_______________________
When equipped with Critical Ring:
Critical +10
Increases Critical Damage by 5%.
_______________________
Refine Level of Bloody Muffler is +5 or higher:
Increases Critical Damage by 3%.
_______________________
Refine Level of Bloody Muffler is +7 or higher:
Increases Critical Damage by 4%.
_______________________
Type: Garment
Defense: 10
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 50
Weapon Level 0 Identifier Scarlet_Poncho
Attack 0 Type Armor
MATK 0 Equip Locations Garment
Defense 10 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
bonus bCritAtkRate,3;
bonus bMdef,5;

Set Script
Crimson Poncho
Critical Anklet
bonus bCritAtkRate,5;
bonus bCritical,10;
.@r = getequiprefinerycnt(EQI_GARMENT);
if (.@r >= 5) {
   bonus bCritAtkRate,3;
}
if (.@r >= 7) {
   bonus bCritAtkRate,4;
}
Crimson Poncho
Critical Ring
bonus bCritAtkRate,5;
bonus bCritical,10;
.@r = getequiprefinerycnt(EQI_GARMENT);
if (.@r >= 5) {
   bonus bCritAtkRate,3;
}
if (.@r >= 7) {
   bonus bCritAtkRate,4;
}
Crimson Poncho
Critical Ring
bonus bCritAtkRate,5;
bonus bCritical,10;
.@r = getequiprefinerycnt(EQI_GARMENT);
if (.@r >= 5) {
   bonus bCritAtkRate,3;
}
if (.@r >= 7) {
   bonus bCritAtkRate,4;
}