range marking

This commit is contained in:
the me 2022-08-18 13:47:07 -07:00
parent d8e6a82fdb
commit 26eabf966d
58 changed files with 774 additions and 76 deletions

View file

@ -0,0 +1,30 @@
global.unitdata = {};
var mydata = {
name: "chara",
desc: "the first fallen human",
skills: ["SKILLS.LUNA"],
idle: s_momiji,
up: s_momijiup,
down: s_momijidown,
}
nu unit(mydata, mydata, [st.hp.add(92), st.str.add(20), st.def.add(10), st.spd.add(5), st.mov.add(4), st.hit.add(0)]);
mydata = {
name: "kris",
desc: "totally kris",
skills: ["SKILLS.LUNA"],
idle: s_bunny,
up: s_bunnyup,
down: s_bunnydown,
}
nu unit(mydata, mydata, [st.hp.add(110), st.str.add(20), st.def.add(10), st.spd.add(5), st.mov.add(4), st.hit.add(0)]);
mydata = {
name: "",
desc: "",
skills: [],
idle: s_null,
up: s_null,
down: s_null,
}

View file

@ -0,0 +1,12 @@
{
"isDnD": false,
"isCompatibility": false,
"parent": {
"name": "Scripts",
"path": "folders/Scripts.yy",
},
"resourceVersion": "1.0",
"name": "x_units",
"tags": [],
"resourceType": "GMScript",
}