├── Assets ├── Audio │ ├── cat.m4a │ ├── dog.m4a │ ├── harp_60C.m4a │ ├── harp_62D.m4a │ ├── harp_64E.m4a │ ├── harp_65F.m4a │ ├── harp_67G.m4a │ ├── harp_69A.m4a │ ├── harp_71H.m4a │ └── harp_72C.m4a └── Image │ ├── Restriction Arrows │ ├── down.png │ ├── down_left.png │ ├── down_left_right.png │ ├── down_right.png │ ├── left.png │ ├── left_right.png │ ├── no.png │ ├── right.png │ ├── up.png │ ├── up_down.png │ ├── up_down_left.png │ ├── up_down_left_right.png │ ├── up_down_right.png │ ├── up_left.png │ ├── up_left_right.png │ └── up_right.png │ ├── animal.png │ ├── castle.png │ ├── castledoor_1.png │ ├── castletown.png │ ├── character.png │ ├── favicon.ico │ ├── forest.png │ ├── snow_jukebox.png │ ├── snowforest.png │ ├── sunset1.png │ └── wizard.png ├── LICENSE ├── README.md ├── astar.js ├── control.js ├── core.js ├── data.js ├── index.html ├── scriptLoader.js └── w3.css /Assets/Audio/cat.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/cat.m4a -------------------------------------------------------------------------------- /Assets/Audio/dog.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/dog.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_60C.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_60C.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_62D.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_62D.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_64E.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_64E.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_65F.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_65F.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_67G.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_67G.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_69A.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_69A.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_71H.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_71H.m4a -------------------------------------------------------------------------------- /Assets/Audio/harp_72C.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Audio/harp_72C.m4a -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/down.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/down_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/down_left.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/down_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/down_left_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/down_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/down_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/left.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/left_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/no.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_down.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_down_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_down_left.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_down_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_down_left_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_down_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_down_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_left.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_left_right.png -------------------------------------------------------------------------------- /Assets/Image/Restriction Arrows/up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/Restriction Arrows/up_right.png -------------------------------------------------------------------------------- /Assets/Image/animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/animal.png -------------------------------------------------------------------------------- /Assets/Image/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/castle.png -------------------------------------------------------------------------------- /Assets/Image/castledoor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/castledoor_1.png -------------------------------------------------------------------------------- /Assets/Image/castletown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/castletown.png -------------------------------------------------------------------------------- /Assets/Image/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/character.png -------------------------------------------------------------------------------- /Assets/Image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/favicon.ico -------------------------------------------------------------------------------- /Assets/Image/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/forest.png -------------------------------------------------------------------------------- /Assets/Image/snow_jukebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/snow_jukebox.png -------------------------------------------------------------------------------- /Assets/Image/snowforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/snowforest.png -------------------------------------------------------------------------------- /Assets/Image/sunset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/sunset1.png -------------------------------------------------------------------------------- /Assets/Image/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/Assets/Image/wizard.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/README.md -------------------------------------------------------------------------------- /astar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/astar.js -------------------------------------------------------------------------------- /control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/control.js -------------------------------------------------------------------------------- /core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/core.js -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/data.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/index.html -------------------------------------------------------------------------------- /scriptLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/scriptLoader.js -------------------------------------------------------------------------------- /w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNyanta/JS-RPG-Engine/HEAD/w3.css --------------------------------------------------------------------------------