Compare commits
33 Commits
Author | SHA1 | Date | |
---|---|---|---|
1e9f19f7fd | |||
20bb52034d | |||
eeb957268a | |||
bbf2cf9e86 | |||
c88fd32f00 | |||
34eaa5403d | |||
78b018570c | |||
c9c542ab14 | |||
72e6cdb238 | |||
6104e341e2 | |||
2362f1e19d | |||
5cf12c6923 | |||
25e54f376b | |||
7680c5ab6e | |||
f716c1d9f0 | |||
9d47772c48 | |||
5184664f26 | |||
f1f1375dbc | |||
09788d5830 | |||
97700bc3a3 | |||
4cf95f5621 | |||
fa891137f5 | |||
4c6af56d85 | |||
3aba3b2624 | |||
97c94d2e39 | |||
52bad334e8 | |||
7fc324e335 | |||
c81c21d22e | |||
4b26f0a252 | |||
1d204109b7 | |||
8fdfe6b4c8 | |||
57909711ea | |||
20815c905b |
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
_saves/
|
||||
常用工具/
|
||||
_server/config.json
|
||||
启动服务.exe
|
166
LICENSE
@ -1,3 +1,165 @@
|
||||
Additional permission under GNU GPL version 3 section 7
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
@ -1 +0,0 @@
|
||||
{"viewportLoc":[0,0],"lastUsed":[{"idnum":1,"id":"yellowWall","images":"animates","y":10,"recent":1673440212744,"frequent":2},{"idnum":211,"id":"skeletonCaptain","images":"enemys","y":10,"recent":1673440202872,"frequent":1}],"editor_multi.fontSize":14,"editorLastFloorId":"sample1"}
|
4
main.js
@ -560,10 +560,10 @@ main.prototype.listen = function () {
|
||||
(main.dom.startButtons.style.display == 'block' ||
|
||||
main.dom.levelChooseButtons.style.display == 'block')
|
||||
) {
|
||||
if (e.keyCode == 38 || e.keyCode == 33)
|
||||
if (e.keyCode == 38 || e.keyCode == 37 || e.keyCode == 33)
|
||||
// up/pgup
|
||||
main.selectButton((main.selectedButton || 0) - 1);
|
||||
else if (e.keyCode == 40 || e.keyCode == 34)
|
||||
else if (e.keyCode == 40 || e.keyCode == 39 || e.keyCode == 34)
|
||||
// down/pgdn
|
||||
main.selectButton((main.selectedButton || 0) + 1);
|
||||
else if (e.keyCode == 67 || e.keyCode == 13 || e.keyCode == 32)
|
||||
|
1
project/animates/EMliuhan.animate
Normal file
1
project/animates/EMsikao.animate
Normal file
1
project/animates/EMyinyue.animate
Normal file
@ -0,0 +1 @@
|
||||
{"ratio":1,"se":{"1":"EMyinyue.mp3"},"bitmaps":["data:image/png;base64,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","","","","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMfSURBVHhe7dpPKK1pHAdwsyZnrqJYiCuxs/A/OvInQizEQs3Gxt3YzIqdjTRlo0TdlJQkUzZ2o6HJ+ookku5OKQslC5NuPfM+Z86pmVlOzcI7n0/9ek/nvM/u9z3Pn/ctAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgP5HJZD6UlpbOF6q6uvpD/idIv7KysoGkwtDQUIjXysrKL0LA/0YMQH19fYg2NzdD0vyhtrb2qa6urjl/C6RXDEDS7OH+/j6cnZ2Fq6ur0N7eHkMQampq5vO3QTpVVVUNNDU1hYuLi3B4eJi7vr29hbm5uUIIvjQ2NpoNSKekyQf6+vrC7e1tmJmZCcfHx7lZ4PX1NXdta2sLDQ0NTy0tLR/zQyA9YgB6enrC9fV1mJycDPHz0tJSuLy8DA8PD+H8/Dy0trbG+pwfAulRCMDNzU0uAMls8HNnZ2eYnZ3NBeD5+Tns7OzEfcEv+SGQHv8MQLLUGUhqNqmn5eXl8PLyEk5PT0M2mxUA0qe4uHgg/uPHpc7ExEQuAPH75LoxPT0dHh8fw8LCQhgcHBQA0icGIJ797+/vh7GxscIM8EMMwO7u7re1tbVvyQzx+/Dw8Ex+CLxvmUzmY0lJyXyh4nFnXOf/NQBTU1O/JvVbW1vbRrIvWE+GfffnaHjHkoafTf71Q3l5edzwxqVN6O3tDevr638LQEdHx4/Nzc2furq6PuWHwvuXNP9TPNaM4gY3rvFPTk7C4uJibhOcNH7cFH9fqPwwSIcYgHiqEx9yHRwchNXV1bCyspLbA/T39+cCkL8V0qeiouJpe3s77O3tha2trXB0dBTu7u7CxsZGGBkZCaOjo94EJb2S9f1T0uS5Y8/4oCs2f3wLNDb/8PDwT/nbIJ26u7ubs9ns16Riw4fx8fFYX5MAePMTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPj3ior+ADR5SYuo/dAmAAAAAElFTkSuQmCC","","","","",""],"frame_max":30,"frames":[[[0,0,-8,80,255,0,0]],[[0,0,-12,90,255,0,0]],[[0,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-2,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,2,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-2,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,-1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,2,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,1,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-18,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-18,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-17,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[4,0,-16,100,255,0,0]]],"pitch":{"1":100}}
|
1
project/animates/EMyiwen.animate
Normal file
1
project/animates/SLjing.animate
Normal file
@ -0,0 +1 @@
|
||||
{"ratio":1,"se":{"1":"SLjing.mp3"},"bitmaps":["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQ7SURBVHhe7dxNaFxVFADgLrvMzhgQonSTZVD82RTqL9aNVgSpFjfWggulgoUui2JbQruQKIZGRIiYillUbNOKceNPiyZ11Up+LLqJibGDmz4XCtd73rzJ3zRJlzPT74PDTObddHXufeecN802AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg9tDbtT31rYv4rHv79lQtgc5zX29PemXfi2n26qVU1K6XUavVyte/5+fThbFP077du1Jfd5eNQOeI0z0S++rPX6eiKNJmYkOcGfkwPfFgvzsC7S9O/dMnj6ac+VWK35o/F2fTmy+/UJZG1T8F7SVKmR9Hh6uUXivKnfePv532PP1MJPhynJuYqFbEninSwKGD7gS0n96urvrJfxMPPLJ7TdKvjsmLF6tVdUVRS/v3PBXXoH1E0m4kGuG8pCl29N5TrVhrYW4m7ey7O9ZA64tkjUnPRk588HFT8kfExthIlEtKIdrCZqd/iLFnXtYU0RdsxF2AthCn9Ea1/2p5aVNsKjfEMRXK66B1xdgy5v1byUvXREyDthIbSxlES4uvNdRq81XKbiwvXRNR49fF84Kbx+Wvxj0XoLXFBtjqaW+IiU9evhy/zk3nT+P3alXEJopo/FykP6YnbQBaWyRoJOpWVo9C7+q5M3/SSPhrOa6si/q1eKhmA9DSbrUHeHfkxPIGqI8/c6IXUzm+r2Kiingf166l7waP6QFobVtPgRo1fW15A/w+M54/mkjFjS9z+fT5SsTPOcqNsDSZjh7YK/lpfeVzgKY+YCXxG6XO+NmBdH3h/KrEH8kxtDaWRtN/i+fT9Utn06P9O2wAWl98AzQmNitJvz75G+VO49Rfn/jH6q+LOa7la1fG0uiRN9Id6n/aRXz/vygi2RtTnJUGN079g6/uKr/zHxHvjx99LE3/dKSe/IvvpH9mBtKNqcFUTA+lhXOfeApMe4lm+KPDB/IpX5/glMmfT/3ffvmscZLfNE6NvpSKmbfqMTWQe+DhdGjvk5pf2k/8f4CY3NSnOI0Jz0TjKw1N8fzD96al+XwXWJX8sYmMPmlb/T1dZRL/O1tNeqpmd2lhKJ354rUyLo+/vnLqV8n/1w+n0uG9z0p+2l8kcZQxSxeGy4a2bGxzbR91fiR8vJbvy1N/MM2NHkv7H79f00tnielQbIRI8GJquGxyy0a3Svq4Uzz3UH/5Z1KqX4HOEneDqPWjvm9E9Al93fF3gcpeADpXTHPiiW7xbS6DckRZFKd+dRk6WzTFc6ffS8U3Y+Vr3A2qS9D5YrITD7biye7Ovm7Jz+0n+gAPtgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA28a2bf8Depjevg4CcBUAAAAASUVORK5CYII=","","","","","","","","","","","","","",""],"frame_max":14,"frames":[[[45,0,-24,100,255,0,0]],[[45,0,-40,100,255,0,0]],[[45,0,-48,100,255,0,0]],[[45,0,-56,100,255,0,0]],[[45,0,-48,100,255,0,0]],[[45,0,-40,100,255,0,0]],[[45,0,-32,100,255,0,0]],[[45,0,-32,100,255,0,0]],[[45,0,-32,100,255,0,0]],[[45,0,-32,100,255,0,0]],[[45,0,-32,100,200,0,0]],[[45,0,-32,100,150,0,0]],[[45,0,-32,100,100,0,0]],[[45,0,-32,100,50,0,0]]],"pitch":{"1":100}}
|
1
project/animates/SLshengqi.animate
Normal file
@ -0,0 +1 @@
|
||||
{"ratio":1,"se":{"1":"SLshengqi.mp3"},"bitmaps":["","","","","","","","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAK7SURBVHhe7drhShRRFAdwX8FX8BV6Jx+kL34olEQWtnXTpHUlwwwtPyxWEBKBhKAUgWtGRRKx9QaT/2EmFl8gZvf3g8vMyM58Oufcc+91BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBptrCwMFuPuwu359srS+1c81z9BCbPeMC37t15vNZZGRwePBsevRyMdrY2hvmbJGAiJbAT+An2j2cnxdHrQfH2zWGR++Gn0+Ls5Lg42NspkhTXSXKreg0mQyp/qv3Vt4vi18+rcny9vCjyfPXje3l/+v5d8Wrwotjsrh4/7ffmq1eh+VL9E+AJ/D+/R/9GnQxJhC+fz8uR3/UfdoatVks7RPOlpWkvLw3T8tQzQKp+nQy5ZgbIqO/TDmXWqD4BzZTef/1+6/Hz3e0yqNPv123P+EyQ58vzD+U1I2sFCUDjpfpnhyeL3LLnvw7u+jqeAOOzQFqgw4M9MwDNlyBO5U91H6/2GXULdDMBMtIuZd1QfQaaKQnwZGtjlMVtHex1wN8M/iRJfpf7zBjZEq0+A82UNUB/vTtKW1O3PfUMUCdA7rM2yMi5QNqfJI2tUCZCAvlBZ2WUVigHYKnuN88DEvj1Adnu9maRhXP1OjRfr9edS1D3N7rlInc8AdL6jCfAztaj8jDMv0Uwceot0QR7Kn/angR9kiDXzbXVsvrn3MAuEBNnv9crzwWyLkifn5FT3yRF2qT28uIouz/ljNFpHVevwWRJgNdjf783myRIAmS9IPCZOgn8VP9Wa3FO789UUvmZammHqlsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgP9vZuYvaBOcVqyMjE4AAAAASUVORK5CYII=","",""],"frame_max":20,"frames":[[[7,0,-16,50,255,0,0]],[[7,0,-16,75,255,0,0]],[[7,0,-16,100,255,0,0]],[[7,0,-16,100,255,0,0]],[[7,0,-16,100,255,0,0]],[[7,0,-16,100,255,0,0]],[[7,0,-16,100,167,0,0]],[[7,0,-16,100,80,0,0]],[],[],[[7,0,-16,50,255,1,0]],[[7,0,-16,75,255,1,0]],[[7,0,-16,100,255,1,0]],[[7,0,-16,100,255,1,0]],[[7,0,-16,100,255,1,0]],[[7,0,-16,100,255,1,0]],[[7,0,-16,100,167,1,0]],[[7,0,-16,100,80,1,0]],[],[]],"pitch":{"1":100}}
|
1
project/animates/SLyiwen.animate
Normal file
@ -0,0 +1 @@
|
||||
{"ratio":1,"se":{"1":"SLyiwen.mp3"},"bitmaps":["data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANMSURBVHhe7dw9axRRFAbg/AX/gn/B0rEQTSwEwUK0UYlFJAhiI4IgqCB+ECKITfALgqgoBEEwRQgWFiIEERRFMKIgKFEWEfs177oLEkdCkgk7mzwPXJLdnXtOc+buvTN3tg8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGC17CyKDQNFsWlHUWzvL4o98/8PdVpe5/18nuPaXaD3bSuKjSnww4f2j108e2r25rWrjYcP7jSnJx81n0w9bv3N67yfz3Ncjk+/dgjoPRnJ/xT+wam74zear148b3778qn568fcf1s+z3E5Pv3S3zcCPSej986tWy9kVP/4/k1psS/W0i/9E8e3AT0jxTo8eOD+5KOJ0sJeakucxHMSUHsp0sF9e+9nbl9WzMttiZe4TgJqq3WVZ/PmE1WN/Atb4ia+NQG1lMuYl0fONcqKt6qW+MnTTgn1kFF53+5dY29fvywt3Kpa4iePbwFqJTewMjr/bHwtLdyqWuInT/K1U0P35W7uas39F7bWWmA+Xzs1dF8Wp7mBVVawVbfkSb52aui+/i3Fhdl3r0oLtuqWPMnXTg3d5wRgXcuUZLWvAHVa8pgCUStZlD57Ol1asFW35LEIplaya/POreulBVt1S57ka6eG7sseneNHj8wstt15pS3xk8eeIGon05I83FJWuFW1xDf9oZYyKh8bHppZ7v7/xVriJr7Rn9rKRrWRc6cbXz9/KC3i5bbES1wb4ai1bFLLAvXK6KXKToLESTyPR9ITOifBmZPHZ1e6PSL9E0fx03MyXcmjjLlsudR1QY5Pv/Q37aFnZcGa0Tu/8DB2ZbSRRxtT3N/nyrdN5yZXjuv8IoQFL2tCpi8ZybOFIVdyXr+c+af4J+7dbu3xyXGmO6xJGdFzI+vvfUN5yCXFn5ND4bOmDRTFplzO7Nwxzt/8CJbiZ13o3C3OOiDrgfwUYt5T/KwLI+fPDk3cG59tFf78qJ9vBMXPupFiT9G7ugMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAECX9PX9Bigmfqf0dAhLAAAAAElFTkSuQmCC","","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHgSURBVHhe7do9SsRAFADgAU+glfX2NiqrgmhjpY21nYWCYCWCC1sogqyIKIgI4k+nlaVWXsEr7BW8QvRNNqJrJ1bJ98GQkEn53sx7ySQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgH3Sunkf3715b3ZuX4+Gx0nkYHbwG9VMF/vXFeX9h+74YWz4txlfPirivxtjKyVKa70kE6ieC//7m8j2CPrV3+2lqcy+P9s5rmjkon39eJQC1s957alUrf5rpvqfprdZgqjTbvR5ZPCrSXLeI+8FTqIeo72OFz0He3v0V5FH65B0gEiB2BKiVKGui7IngjzG5cTyYyaI8yrtDnpcA1FGUPRH4Mb6VQNEc5+DPq//v5ID6mO/8aHCHgr9sjKEJojH+aoqHdgWov7nDzbzqC3waKRrjSAJoovg0utZz/IGGinNBj3e3b9EH5CMQ0CTVt//yCMRnI+wIBI0S9X8EfvlzrJ8mtiQADVP9HBP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBfpPQBOFakcSEWUBgAAAAASUVORK5CYII=","","","","","","",""],"frame_max":20,"frames":[[[0,0,-8,80,255,0,0],[2,0,-8,80,255,0,0]],[[0,0,-12,90,255,0,0],[2,0,-12,90,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-18,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-20,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-18,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]],[[0,0,-16,100,255,0,0],[2,0,-16,100,255,0,0]]],"pitch":{"1":100}}
|
1
project/animates/amiya1.animate
Normal file
1
project/animates/amiya6.animate
Normal file
1
project/animates/angry.animate
Normal file
1
project/animates/banbaozha.animate
Normal file
1
project/animates/baofa.animate
Normal file
1
project/animates/baozha.animate
Normal file
1
project/animates/bigExplosion.animate
Normal file
1
project/animates/bing.animate
Normal file
1
project/animates/blackmagic.animate
Normal file
1
project/animates/boss.animate
Normal file
1
project/animates/boss8.animate
Normal file
1
project/animates/chanrao.animate
Normal file
1
project/animates/dark.animate
Normal file
1
project/animates/darkexplode.animate
Normal file
1
project/animates/darkness01.animate
Normal file
1
project/animates/dazhaofadong.animate
Normal file
1
project/animates/dun.animate
Normal file
1
project/animates/eli2.animate
Normal file
1
project/animates/eli3.animate
Normal file
1
project/animates/explosion.animate
Normal file
1
project/animates/explosion_small.animate
Normal file
1
project/animates/fire2.animate
Normal file
1
project/animates/fire4.animate
Normal file
1
project/animates/hand1.animate
Normal file
1
project/animates/hand2.animate
Normal file
1
project/animates/hand3.animate
Normal file
1
project/animates/heidong3.animate
Normal file
1
project/animates/hongguang.animate
Normal file
1
project/animates/jianxue.animate
Normal file
1
project/animates/lanjian.animate
Normal file
1
project/animates/lanlei.animate
Normal file
1
project/animates/light.animate
Normal file
1
project/animates/magic.animate
Normal file
1
project/animates/morphattack.animate
Normal file
1
project/animates/omnislash.animate
Normal file
1
project/animates/shengdun.animate
Normal file
1
project/animates/skill2.animate
Normal file
1
project/animates/support1.animate
Normal file
@ -1 +1 @@
|
||||
{"ratio":2,"bitmaps":["data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAD6SURBVHhe7dQ9SsVAFAXg+MNTeAhaWCrWLsHGUlCwsHMXgo2NjZ31a1yBVtaCrSvQ1i24hSSegbuEBAS/Dw7M3JnqZEgHAAAAAAAAAAAAAP/NOI5rySI5GobhNDlJ9uuYqaXo9RR83Pf9U/KevGV/kxwkW+2D1FWmkmKXKfYuZf8k38lrZpeZHSaLusaU2ktOyRcp+zP5Sl6yv858t53VNaaWcrdT9mPSXvpHskrxO3XMnNpvJYW3F/+Q9XmNmVv7raT055R+n/VejZlbyt5M6VfJbdYbNWZureyUvkzOagQAAAAAAAAAAAAAAAAAAAAAAAAAAADwd3XdL135q9NaPZ6+AAAAAElFTkSuQmCC","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJ4SURBVHhe7de7alRRFMbx3DSIgqiNIBJsBUUESyutBAsLO9/CWtL4BtorlgFBRGIEEQwxMSBiMWouGo2TCyaTC0lmJjM5ey+/HVfeYPZB8P+DNefsS/WdxZ5zugAAAAAAAAAAAAAAAAAAAID/lZkdVnX7ELmkkA+C1rU3xngthHBf1xsa9+1vQmcdhK7qUdAXFPh4URSjur+r6vdt6DQP/ZDqkkL/ZlZs6jqh8WnfghzU1UcOQlclmop3fBk5KPA+hXxRYb9LiWtsujR0Oe5b0Gke+hUF/TaFLtHrh29BDgr9jEJOoReqeur2RPfTvgWdpnzTG8yAQm6oYgq8uWfWLvaD1y+vkNko3G6FPJ9CT7ZbZpVVs9m1/Ydw3bchB3X9+dTxqVLwk4tmH1T1VnjlW5CDGj11/XDq+HTgfFwye/rVbKpmNjzDx1N2Cn8jhb+qF8mRObOX381m1sPww4od8y3IQZn3KPzdogjNyorZ8xmzaXX9cjOe8y3IxcNvNtq2OV41ezFrttYMv30ZOSn8dOavqBrjC3+PnfVGvOfLyE0P4HH6qhr9Zfbmp7p/Lg74EnJT+LdbeyGk4F/PhfhgMp7yJeSm9/yTavza2HyIYwuhPTRkvb6E3NT5fQr/2cRS2HhfDfVB/Qn7EnJLf7rq/pvTq6H9uRa2fBplSOGrTixvhdrUWqj7NMqi8HsV/shsLez5FMq004qXq+th14cok879/upO+FKp2GGfQll09PSsNOLVxXq85VMoUzr7F7fDIx+iTOnNR8fP2UGOnvKl8NPx8+RTPOpTKFt6CH4LAAAAAAAAAAAAAAAAAAAAAAAAAACAf1RX1x9x4x3SPdhnTAAAAABJRU5ErkJggg==","","","","","","","","","","","","","","","","","",""],"frame_max":5,"frames":[[[0,8,32,30,100]],[[0,-16,32,50,130]],[[0,-24,40,80,150]],[[0,-48,24,90,180],[1,-8,40,100,255]],[[0,-56,24,100,200],[1,-8,24,100,255]]]}
|
||||
{"ratio":2,"bitmaps":["data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAD6SURBVHhe7dQ9SsVAFAXg+MNTeAhaWCrWLsHGUlCwsHMXgo2NjZ31a1yBVtaCrSvQ1i24hSSegbuEBAS/Dw7M3JnqZEgHAAAAAAAAAAAAAP/NOI5rySI5GobhNDlJ9uuYqaXo9RR83Pf9U/KevGV/kxwkW+2D1FWmkmKXKfYuZf8k38lrZpeZHSaLusaU2ktOyRcp+zP5Sl6yv858t53VNaaWcrdT9mPSXvpHskrxO3XMnNpvJYW3F/+Q9XmNmVv7raT055R+n/VejZlbyt5M6VfJbdYbNWZureyUvkzOagQAAAAAAAAAAAAAAAAAAAAAAAAAAADwd3XdL135q9NaPZ6+AAAAAElFTkSuQmCC","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJ4SURBVHhe7de7alRRFMbx3DSIgqiNIBJsBUUESyutBAsLO9/CWtL4BtorlgFBRGIEEQwxMSBiMWouGo2TCyaTC0lmJjM5ey+/HVfeYPZB8P+DNefsS/WdxZ5zugAAAAAAAAAAAAAAAAAAAID/lZkdVnX7ELmkkA+C1rU3xngthHBf1xsa9+1vQmcdhK7qUdAXFPh4URSjur+r6vdt6DQP/ZDqkkL/ZlZs6jqh8WnfghzU1UcOQlclmop3fBk5KPA+hXxRYb9LiWtsujR0Oe5b0Gke+hUF/TaFLtHrh29BDgr9jEJOoReqeur2RPfTvgWdpnzTG8yAQm6oYgq8uWfWLvaD1y+vkNko3G6FPJ9CT7ZbZpVVs9m1/Ydw3bchB3X9+dTxqVLwk4tmH1T1VnjlW5CDGj11/XDq+HTgfFwye/rVbKpmNjzDx1N2Cn8jhb+qF8mRObOX381m1sPww4od8y3IQZn3KPzdogjNyorZ8xmzaXX9cjOe8y3IxcNvNtq2OV41ezFrttYMv30ZOSn8dOavqBrjC3+PnfVGvOfLyE0P4HH6qhr9Zfbmp7p/Lg74EnJT+LdbeyGk4F/PhfhgMp7yJeSm9/yTavza2HyIYwuhPTRkvb6E3NT5fQr/2cRS2HhfDfVB/Qn7EnJLf7rq/pvTq6H9uRa2fBplSOGrTixvhdrUWqj7NMqi8HsV/shsLez5FMq004qXq+th14cok879/upO+FKp2GGfQll09PSsNOLVxXq85VMoUzr7F7fDIx+iTOnNR8fP2UGOnvKl8NPx8+RTPOpTKFt6CH4LAAAAAAAAAAAAAAAAAAAAAAAAAACAf1RX1x9x4x3SPdhnTAAAAABJRU5ErkJggg==","","","","","","","","","","","","","","","","","",""],"frame_max":5,"frames":[[[0,8,32,30,100]],[[0,-16,32,50,130]],[[0,-24,40,80,150]],[[0,-48,24,90,180],[1,-8,40,100,255]],[[0,-56,24,100,200],[1,-8,24,100,255]]],"se":{"1":"122-Ice03.ogg"},"pitch":{"1":100}}
|
1
project/animates/sword1.animate
Normal file
1
project/animates/sword2.animate
Normal file
1
project/animates/sword3.animate
Normal file
1
project/animates/sword4.animate
Normal file
1
project/animates/sword5.animate
Normal file
1
project/animates/thunder3.animate
Normal file
1
project/animates/thunder4.animate
Normal file
1
project/animates/thunder5.animate
Normal file
1
project/animates/wind1.animate
Normal file
1
project/animates/yijianzhanqianye.animate
Normal file
1
project/animates/yueying.animate
Normal file
1
project/animates/zhuanhua.animate
Normal file
BIN
project/autotiles/autotile10.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
project/autotiles/autotile11.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
project/autotiles/autotile12.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
project/autotiles/autotile13.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
project/autotiles/autotile14.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
project/autotiles/autotile15.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
project/autotiles/autotile16.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
project/autotiles/autotile17.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
project/autotiles/autotile18.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
project/autotiles/autotile19.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
project/autotiles/autotile20.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
project/autotiles/autotile21.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
project/autotiles/autotile22.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
project/autotiles/autotile23.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
project/autotiles/autotile24.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
project/autotiles/autotile25.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
project/autotiles/autotile26.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
project/autotiles/autotile27.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
project/autotiles/autotile28.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
project/autotiles/autotile29.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
project/autotiles/autotile30.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
project/autotiles/autotile31.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
project/autotiles/autotile32.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
project/autotiles/autotile36.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
project/autotiles/autotile37.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
project/autotiles/autotile4.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
project/autotiles/autotile5.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
project/autotiles/autotile6.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
project/autotiles/autotile7.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
project/autotiles/autotile8.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
project/autotiles/autotile9.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
project/autotiles/home.png
Normal file
After Width: | Height: | Size: 339 KiB |
BIN
project/autotiles/zombie_tiled.png
Normal file
After Width: | Height: | Size: 299 KiB |