Skip to content

Commit 18d8a15

Browse files
committed
five more maps + style updates
Teamsof5's pie hiking course, definitive pie hiking, RodneyWalten's pie hiking, pie 10k studs for badge
1 parent d4516b3 commit 18d8a15

File tree

5 files changed

+39
-12
lines changed

5 files changed

+39
-12
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# DS_Store
22
.DS_Store
3+
4+
ToAdd.md

pie-hiking/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h3 style="text-align: center;">Extra Notes</h3>
7979
<!-- List of pie hiking challenges -->
8080
<div>
8181
<h3 id="pie-hiking-maps-text" style="text-align: center;">Pie Hiking Maps</h3>
82-
<div style="height: 470px; overflow-y: scroll;">
82+
<div style="height: 470px; overflow-y: scroll; font-family: 'PT Sans';">
8383
<table id="pie-hiking-maps-table"></table>
8484
</div>
8585
</div>

src/assets/data/pie-hiking-maps.json

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
"creator": "fish supporters and fans"
4141
},
4242
{
43-
"name": "(inaccessible) pie course halloween edition (ljms)",
43+
"name": "(n/a) pie course halloween edition (ljms)",
4444
"link": "https://www.roblox.com/games/14107732720/late-july-midsummer",
4545
"creator": "fish supporters and fans"
4646
},
4747
{
4848
"name": "Pie Hiking Difficulty Test",
4949
"link": "https://www.roblox.com/games/16124983043/Pie-Hiking-Difficulty-Test",
50-
"creator": "Dreams Abt. Limitless Inf. Twaai"
50+
"creator": "Dreams About Limitless Infinity Twaai"
5151
},
5252
{
5353
"name": "(private) Pie Hiking Tournament",
@@ -238,5 +238,30 @@
238238
"name": "The Pi-Exam",
239239
"link": "https://www.roblox.com/games/130342407229462/The-Games-I-Make-Memorial-Pi",
240240
"creator": "hellomylolthe"
241+
},
242+
{
243+
"name": "Pie Hiking Course",
244+
"link": "https://www.roblox.com/games/108219216054712/Pie-Hiking-Course",
245+
"creator": "team_treesplanters"
246+
},
247+
{
248+
"name": "Definitive Pie Hiking",
249+
"link": "https://www.roblox.com/games/80859773343655/Definitive-Pie-Hiking",
250+
"creator": "SUCO DE MARUJA GAMES"
251+
},
252+
{
253+
"name": "Pie Hiking Training Course",
254+
"link": "https://www.roblox.com/games/121220953186134/Pie-Hiking-Training-Course-W-I-P",
255+
"creator": "bruh_4150"
256+
},
257+
{
258+
"name": "Pie Hiking / sky castle",
259+
"link": "https://www.roblox.com/games/86184283961580/Pie-Hiking",
260+
"creator": "RodneyWalten"
261+
},
262+
{
263+
"name": "pie 10k studs for badge",
264+
"link": "https://www.roblox.com/games/16054014978/pie-10k-studs-for-badge",
265+
"creator": "Doritogon303"
241266
}
242267
]

src/scripts/pie-hiking.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function updatePieHikeGames() {
1717

1818
// Initialize functions
1919

20-
async function initializePieHikingMaps() {
20+
async function initPHMaps() {
2121
// Update pie hiking games
2222
await updatePieHikeGames();
2323

@@ -36,8 +36,8 @@ async function initializePieHikingMaps() {
3636
// Create row
3737
const tableRow = document.createElement("tr");
3838
const tableMapId = document.createElement("th");
39-
const tableMapName = document.createElement("th");
4039
const tableMapLink = document.createElement("th");
40+
const tableMapName = document.createElement("th");
4141
const tableMapCreator = document.createElement("th");
4242

4343
// Modify content
@@ -49,8 +49,8 @@ async function initializePieHikingMaps() {
4949

5050
// Build row
5151
tableRow.appendChild(tableMapId);
52-
tableRow.appendChild(tableMapName);
5352
tableRow.appendChild(tableMapLink);
53+
tableRow.appendChild(tableMapName);
5454
tableRow.appendChild(tableMapCreator);
5555

5656
// Append row
@@ -65,9 +65,9 @@ async function initializePieHikingMaps() {
6565
// Create row
6666
const tableRow = document.createElement("tr");
6767
const tableMapId = document.createElement("td");
68-
const tableMapName = document.createElement("td");
6968
const tableMapLink = document.createElement("td");
7069
const mapHyperlink = document.createElement("a");
70+
const tableMapName = document.createElement("td");
7171
const tableMapCreator = document.createElement("td");
7272

7373
// Modify hyperlink
@@ -87,8 +87,8 @@ async function initializePieHikingMaps() {
8787
// Build row
8888
tableMapLink.appendChild(mapHyperlink);
8989
tableRow.appendChild(tableMapId);
90-
tableRow.appendChild(tableMapName);
9190
tableRow.appendChild(tableMapLink);
91+
tableRow.appendChild(tableMapName);
9292
tableRow.appendChild(tableMapCreator);
9393

9494
// Append row
@@ -99,12 +99,12 @@ async function initializePieHikingMaps() {
9999
freezeRows(pieHikingMapsTable, [0]);
100100
}
101101

102-
function initializePieHiking() {
103-
initializePieHikingMaps();
102+
function init() {
103+
initPHMaps();
104104
}
105105

106106
function onDOMContentLoaded() {
107-
initializePieHiking();
107+
init();
108108
}
109109

110110
// Calling / events

yume-nikki/roblox-fangames/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h3 id="rynfgs-text" style="text-align: center;">Roblox YNFGs</h3>
3232
<p style="text-align: center;">
3333
Source: <a href="https://icebergcharts.com/i/Roblox_Yume_Nikki_Fangames">Amane's Iceberg</a>
3434
</p>
35-
<div style="height: 470px; overflow-y: scroll;">
35+
<div style="height: 470px; overflow-y: scroll; font-family: 'PT Sans';">
3636
<table id="rynfgs-table"></table>
3737
</div>
3838
</div>

0 commit comments

Comments
 (0)