Skip to content

Commit 215c0e3

Browse files
committed
update 17 files, delete 1 file, create 6 files and rename 1 file
1 parent 0aa174a commit 215c0e3

25 files changed

+884
-1509
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# About
88

9-
Currently PokéGen is a WIP clicker/idle/incremental game that's in development. It's built in vanilla JavaScript and using [Inferno](https://www.infernojs.org/).
9+
Currently PokéGen is a WIP clicker/idle/incremental game that's in development. It's built in vanilla JavaScript and using [SolidJS](https://www.solidjs.com/).
1010

1111
The project is open source, and you are also able to check out the project at any point here:
1212
- [Github repository](https://github.com/Ephenia/PokeGen)
@@ -25,6 +25,8 @@ The main inspiration behind my idea for this game is actually based off of a Min
2525

2626
I thought it would be really cool to actually turn the core idea and concept of ProjectE and try to apply that to Pokémon in some way and build off of that idea, and that's really where my motivation behind this project mainly lies at. I just thought that it would be a really fun and unique idea that's fresh. It's also in a way reminiscent of [PokeGen](https://projectpokemon.org/home/files/file/1620-pokegen/) which was essentially [PKHeX](https://projectpokemon.org/home/files/file/1-pkhex/) but for earlier generations of Pokémon games.
2727

28+
The development of this game is designed with a 1600x900 browser window in mind. It's currently not mobile friendly.
29+
2830
# Other
2931

3032
If you'd like to help support the project, you may drop a ★ on it.
@@ -36,8 +38,9 @@ You may also [join the Discord server](https://discord.gg/Tb9GSKGq6g) (can also
3638
# Libraries Used
3739
- [chancejs](https://github.com/chancejs/chancejs)<br>
3840
- [HackTimer](https://github.com/turuslan/HackTimer)<br>
39-
- [inferno](https://www.npmjs.com/package/inferno)<br>
40-
- [localForage](https://www.npmjs.com/package/localforage)
41+
- [localForage](https://www.npmjs.com/package/localforage)<br>
42+
- [lodash](https://www.npmjs.com/package/lodash)<br>
43+
- [solid-js](https://www.npmjs.com/package/solid-js)
4144

4245
# Other Resources Used
4346
- Smogon's various Sprite Projects that can be found [over on their forums](https://www.smogon.com/forums/threads/smogon-sprite-project.3647722/).<br>

index.html

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<base href="./">
5-
<meta charset="UTF-8" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>PokeGen</title>
8-
<script type="module" src="./main.jsx"></script>
9-
</head>
10-
<body>
11-
12-
</body>
13-
</html>
3+
4+
<head>
5+
<link rel="icon" type="image/x-icon" href="./assets/favicon/pokegen.png">
6+
<meta charset="UTF-8" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>PokeGen</title>
9+
<script type="module" src="./src/index.jsx"></script>
10+
</head>
11+
12+
<body>
13+
</body>
14+
15+
</html>

main.jsx

-20
This file was deleted.

0 commit comments

Comments
 (0)