silphscope 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/rom-configs/firered.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silphscope",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.9",
|
|
4
4
|
"description": "A firered/leafgreen ROM asset extractor for use in web applications",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"exports": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"mon-data/",
|
|
17
17
|
"rom-maps/",
|
|
18
18
|
"item-data/",
|
|
19
|
-
"trainer-data"
|
|
19
|
+
"trainer-data",
|
|
20
|
+
"rom-configs/"
|
|
20
21
|
],
|
|
21
22
|
"keywords": [],
|
|
22
23
|
"author": "chickenPoo",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// I have an idea but it needs math D:
|
|
2
|
+
|
|
3
|
+
export const firered = {
|
|
4
|
+
code: "BPRE", // I find this weird... like what does BP stand for? is it: "Battle Pokemon"? no idea :o
|
|
5
|
+
tables: { // so the idea is essentially instead of a big JSON like we have now we instead just view the table graphics and build from that... it in theory could be slower because more lookups instead of direct references but it should be more maintainable...
|
|
6
|
+
monFrontSprites: 0x2350AC,
|
|
7
|
+
monBackSprites: 0x23654C,
|
|
8
|
+
monPalettes: 0x23730C,
|
|
9
|
+
monShinyPalettes: 0x2380CC
|
|
10
|
+
} // if this works out... well hehe... :D
|
|
11
|
+
}
|