range marking
This commit is contained in:
parent
d8e6a82fdb
commit
26eabf966d
58 changed files with 774 additions and 76 deletions
30
eastern flames/scripts/x_units/x_units.gml
Normal file
30
eastern flames/scripts/x_units/x_units.gml
Normal 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,
|
||||
}
|
12
eastern flames/scripts/x_units/x_units.yy
Normal file
12
eastern flames/scripts/x_units/x_units.yy
Normal 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",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue