Home · skill · GreatSword_Upgrade
Your Base Attacks have a 0.04 chance to attack twice.
Properties
- status
- QA
- nature
- Passive
Raw data
{
"status": "QA",
"id": "GreatSword_Upgrade",
"nature": "Passive",
"texts": {
"name": "Weapon Upgraded",
"desc": "Your [BasicAttack]s have a ::chance:: chance to attack twice."
},
"anim": {},
"steps": [],
"flags": [],
"mastery": [],
"props": {
"rankOverride": [
{
"minRank": 2,
"vars": {
"chance": 0.05
}
},
{
"minRank": 3,
"vars": {
"chance": 0.06
}
},
{
"minRank": 4,
"vars": {
"chance": 0.07
}
},
{
"minRank": 5,
"vars": {
"chance": 0.08
}
}
]
},
"vars": {
"chance": 0.04
},
"script": "function onSkillProc(ctx) {\n\tif (ctx.skill?.isBasicAttack() && checkProba(vars.chance)) {\n\t\tctx.skill.playStep(null, ctx.skill.getExecStep().index, null, null, 0.0);\n\t}\n}"
}