Item-Kombination #6607
Kombinationsgröße: 2
Kombinationsgegenstände
Gold_Q_Scaraba_Card
Q_Scaraba_Crown_TW
Kombinationseffekt
bonus bPAtk,20; bonus bCritAtkRate,10*getequiprefinerycnt(EQI_HEAD_TOP);
Skriptreferenzen
bPAtk
Gegenstandsbonus
bPAtk
Signatur:
bonus bPAtk,n;
Beschreibung:
PAtk + n
bCritAtkRate
Gegenstandsbonus
bCritAtkRate
Signatur:
bonus bCritAtkRate,n;
Beschreibung:
Increases critical damage by +n%
getequiprefinerycnt
Befehl
getequiprefinerycnt
Signatur:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Beschreibung:
slot. For a list of equipment slots see 'getequipid'.
Can be used to check if you have reached a maximum refine value, default for
this is +10:
Beispiel:
if (getequiprefinerycnt(EQI_HEAD_TOP) < 10)
mes "I will now upgrade your " + getequipname(EQI_HEAD_TOP);
else
mes "Sorry, it's not possible to refine hats better than +10";
close;