Skip to content

Commit 175788c

Browse files
authored
Releases v1.1.6
- Included Support Items. - Fixes statuses of Mark Joyo ability.
2 parents d3a5bfb + 4b857a0 commit 175788c

File tree

5 files changed

+33
-7
lines changed

5 files changed

+33
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## [Use the Assistant Here](https://malulleybovo.github.io/PSO2AffixingAssistant/)
77
#### [Like it? Check out my Symbol Art Editor Online here too!](https://www.github.com/malulleybovo/SymbolArtEditorOnline/)
8-
#### Version 1.1.5
8+
#### Version 1.1.6
99
#### Compliant with version 1.93 of [Arks Layer's Affix Simulator](https://arks-layer.com/abilitysim/)
1010

1111
### NO HASSLE Affixing Formulas at the tip of your fingers

dist/affixingassistant.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/affixData.js

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,24 @@ let data = {
100100
fn: function (a) {
101101
return Math.min(a + 50, 100)
102102
}
103+
},
104+
{
105+
ref: 8,
106+
id: "Ability Success Rate +55%",
107+
name: "+55%",
108+
value: "A09",
109+
fn: function (a) {
110+
return Math.min(a + 55, 100)
111+
}
112+
},
113+
{
114+
ref: 9,
115+
id: "Ability Success Rate +60%",
116+
name: "+60%",
117+
value: "A10",
118+
fn: function (a) {
119+
return Math.min(a + 60, 100)
120+
}
103121
}
104122
],
105123
// List of Add Abilities
@@ -11066,7 +11084,7 @@ let data = {
1106611084
code: "UC01",
1106711085
gid: "AC",
1106811086
name: "Mark Joyo",
11069-
effect: "S-ATK(+40),<br>R-ATK(+40),<br>T-ATK(+40),<br>HP(+5)"
11087+
effect: "S-ATK(+40),<br>R-ATK(+40),<br>T-ATK(+40),<br>HP(+50)"
1107011088
},
1107111089
{
1107211090
ref: 413,
@@ -12358,4 +12376,4 @@ let data = {
1235812376
var module = module || undefined
1235912377
if (module && module.exports) {
1236012378
module.exports.data = data
12361-
}
12379+
}

js/lang.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,14 @@ const lang = Object.freeze({
460460
"Ability Success Rate +50%": {
461461
en: "Ability Success Rate +50%",
462462
jp: "能力追加成功率+50%"
463+
},
464+
"Ability Success Rate +55%": {
465+
en: "Ability Success Rate +55%",
466+
jp: "能力追加成功率+55%"
467+
},
468+
"Ability Success Rate +60%": {
469+
en: "Ability Success Rate +60%",
470+
jp: "能力追加成功率+60%"
463471
}
464472
},
465473
"additional": {
@@ -4283,8 +4291,8 @@ const lang = Object.freeze({
42834291
"UC01": {
42844292
name_en: "Mark Joyo",
42854293
name_jp: "マーク・ジョイオ",
4286-
effect_en: "S-ATK(+40),<br>R-ATK(+40),<br>T-ATK(+40),<br>HP(+5)",
4287-
effect_jp: "打撃力(+40),<br>射撃力(+40),<br>法撃力(+40),<br>HP(+5)"
4294+
effect_en: "S-ATK(+40),<br>R-ATK(+40),<br>T-ATK(+40),<br>HP(+50)",
4295+
effect_jp: "打撃力(+40),<br>射撃力(+40),<br>法撃力(+40),<br>HP(+50)"
42884296
},
42894297
"UC11": {
42904298
name_en: "Mark Couragena",

js/viewcontroller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class ViewController {
8484

8585
setup() {
8686
$("#malulleybovo").text(lang.app.malulleybovo[this.langCode])
87-
$("#ver").text("v1.1.5")
87+
$("#ver").text("v1.1.6")
8888
$("#editor").children().first().panzoom({
8989
which: 1,
9090
minScale: 0.1,

0 commit comments

Comments
 (0)