mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-05 17:38:35 +00:00
Initial commit
This commit is contained in:
commit
2f17903d30
6
.eslintignore
Normal file
6
.eslintignore
Normal file
@ -0,0 +1,6 @@
|
||||
# don't ever lint node_modules
|
||||
node_modules
|
||||
# don't lint build output (make sure it's set to your correct build folder name)
|
||||
dist
|
||||
index.html
|
||||
.eslintrc.cjs
|
13
.eslintrc.cjs
Normal file
13
.eslintrc.cjs
Normal file
@ -0,0 +1,13 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true,
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
overrides: [],
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest',
|
||||
sourceType: 'module',
|
||||
},
|
||||
rules: {},
|
||||
}
|
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 ourcade
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
31
index.html
Normal file
31
index.html
Normal file
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Pokemon Rogue Battle</title>
|
||||
<style type="text/css">
|
||||
@font-face {
|
||||
font-family: 'emerald';
|
||||
src: url('fonts/pokemon-emerald-pro.ttf') format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'pkmnems';
|
||||
src: url('fonts/pkmnems.ttf') format('truetype');
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background: #484050;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
8
jsconfig.json
Normal file
8
jsconfig.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"moduleResolution": "node",
|
||||
"checkJs": true,
|
||||
"esModuleInterop": true
|
||||
}
|
||||
}
|
3366
package-lock.json
generated
Normal file
3366
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
18
package.json
Normal file
18
package.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "phaser3-vite-template",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^8.25.0",
|
||||
"vite": "^3.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"phaser": "^3.55.2"
|
||||
}
|
||||
}
|
0
public/.gitkeep
Normal file
0
public/.gitkeep
Normal file
BIN
public/audio/bgm/battle.mp3
Normal file
BIN
public/audio/bgm/battle.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/cave.mp3
Normal file
BIN
public/audio/bgm/cave.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/desert.mp3
Normal file
BIN
public/audio/bgm/desert.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/elite_1.mp3
Normal file
BIN
public/audio/bgm/elite_1.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/elite_2.mp3
Normal file
BIN
public/audio/bgm/elite_2.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/elite_3.mp3
Normal file
BIN
public/audio/bgm/elite_3.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/elite_4.mp3
Normal file
BIN
public/audio/bgm/elite_4.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/elite_5.mp3
Normal file
BIN
public/audio/bgm/elite_5.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/forest.mp3
Normal file
BIN
public/audio/bgm/forest.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/grass.mp3
Normal file
BIN
public/audio/bgm/grass.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/land.mp3
Normal file
BIN
public/audio/bgm/land.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/level_up_fanfare.mp3
Normal file
BIN
public/audio/bgm/level_up_fanfare.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/mountain.mp3
Normal file
BIN
public/audio/bgm/mountain.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/sea.mp3
Normal file
BIN
public/audio/bgm/sea.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/space.mp3
Normal file
BIN
public/audio/bgm/space.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/swamp.mp3
Normal file
BIN
public/audio/bgm/swamp.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/victory.mp3
Normal file
BIN
public/audio/bgm/victory.mp3
Normal file
Binary file not shown.
BIN
public/audio/bgm/water.mp3
Normal file
BIN
public/audio/bgm/water.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/0.mp3
Normal file
BIN
public/audio/cry/0.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/1.mp3
Normal file
BIN
public/audio/cry/1.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/10.mp3
Normal file
BIN
public/audio/cry/10.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/100.mp3
Normal file
BIN
public/audio/cry/100.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/101.mp3
Normal file
BIN
public/audio/cry/101.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/102.mp3
Normal file
BIN
public/audio/cry/102.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/103.mp3
Normal file
BIN
public/audio/cry/103.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/104.mp3
Normal file
BIN
public/audio/cry/104.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/105.mp3
Normal file
BIN
public/audio/cry/105.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/106.mp3
Normal file
BIN
public/audio/cry/106.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/107.mp3
Normal file
BIN
public/audio/cry/107.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/108.mp3
Normal file
BIN
public/audio/cry/108.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/109.mp3
Normal file
BIN
public/audio/cry/109.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/11.mp3
Normal file
BIN
public/audio/cry/11.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/110.mp3
Normal file
BIN
public/audio/cry/110.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/111.mp3
Normal file
BIN
public/audio/cry/111.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/112.mp3
Normal file
BIN
public/audio/cry/112.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/113.mp3
Normal file
BIN
public/audio/cry/113.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/114.mp3
Normal file
BIN
public/audio/cry/114.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/115.mp3
Normal file
BIN
public/audio/cry/115.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/116.mp3
Normal file
BIN
public/audio/cry/116.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/117.mp3
Normal file
BIN
public/audio/cry/117.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/118.mp3
Normal file
BIN
public/audio/cry/118.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/119.mp3
Normal file
BIN
public/audio/cry/119.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/12.mp3
Normal file
BIN
public/audio/cry/12.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/120.mp3
Normal file
BIN
public/audio/cry/120.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/121.mp3
Normal file
BIN
public/audio/cry/121.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/122.mp3
Normal file
BIN
public/audio/cry/122.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/123.mp3
Normal file
BIN
public/audio/cry/123.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/124.mp3
Normal file
BIN
public/audio/cry/124.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/125.mp3
Normal file
BIN
public/audio/cry/125.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/126.mp3
Normal file
BIN
public/audio/cry/126.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/127.mp3
Normal file
BIN
public/audio/cry/127.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/128.mp3
Normal file
BIN
public/audio/cry/128.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/129.mp3
Normal file
BIN
public/audio/cry/129.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/13.mp3
Normal file
BIN
public/audio/cry/13.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/130.mp3
Normal file
BIN
public/audio/cry/130.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/131.mp3
Normal file
BIN
public/audio/cry/131.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/132.mp3
Normal file
BIN
public/audio/cry/132.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/133.mp3
Normal file
BIN
public/audio/cry/133.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/134.mp3
Normal file
BIN
public/audio/cry/134.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/135.mp3
Normal file
BIN
public/audio/cry/135.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/136.mp3
Normal file
BIN
public/audio/cry/136.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/137.mp3
Normal file
BIN
public/audio/cry/137.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/138.mp3
Normal file
BIN
public/audio/cry/138.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/139.mp3
Normal file
BIN
public/audio/cry/139.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/14.mp3
Normal file
BIN
public/audio/cry/14.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/140.mp3
Normal file
BIN
public/audio/cry/140.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/141.mp3
Normal file
BIN
public/audio/cry/141.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/142.mp3
Normal file
BIN
public/audio/cry/142.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/143.mp3
Normal file
BIN
public/audio/cry/143.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/144.mp3
Normal file
BIN
public/audio/cry/144.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/145.mp3
Normal file
BIN
public/audio/cry/145.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/146.mp3
Normal file
BIN
public/audio/cry/146.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/147.mp3
Normal file
BIN
public/audio/cry/147.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/148.mp3
Normal file
BIN
public/audio/cry/148.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/149.mp3
Normal file
BIN
public/audio/cry/149.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/15.mp3
Normal file
BIN
public/audio/cry/15.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/150.mp3
Normal file
BIN
public/audio/cry/150.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/151.mp3
Normal file
BIN
public/audio/cry/151.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/152.mp3
Normal file
BIN
public/audio/cry/152.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/153.mp3
Normal file
BIN
public/audio/cry/153.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/154.mp3
Normal file
BIN
public/audio/cry/154.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/155.mp3
Normal file
BIN
public/audio/cry/155.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/156.mp3
Normal file
BIN
public/audio/cry/156.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/157.mp3
Normal file
BIN
public/audio/cry/157.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/158.mp3
Normal file
BIN
public/audio/cry/158.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/159.mp3
Normal file
BIN
public/audio/cry/159.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/16.mp3
Normal file
BIN
public/audio/cry/16.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/160.mp3
Normal file
BIN
public/audio/cry/160.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/161.mp3
Normal file
BIN
public/audio/cry/161.mp3
Normal file
Binary file not shown.
BIN
public/audio/cry/162.mp3
Normal file
BIN
public/audio/cry/162.mp3
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user