From c6b939f303356bacb8fe52b21e82f28d7d22108b Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 3 Apr 2022 21:46:52 +0000 Subject: Forgot to git add lol! --- src/lib/sections/FarmingContests.svelte | 57 +++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/lib/sections/FarmingContests.svelte (limited to 'src/lib/sections') diff --git a/src/lib/sections/FarmingContests.svelte b/src/lib/sections/FarmingContests.svelte new file mode 100644 index 0000000..ca4f1a7 --- /dev/null +++ b/src/lib/sections/FarmingContests.svelte @@ -0,0 +1,57 @@ + + +
+

Talked to Jacob:

+
+
+ {#each data.member.farmingContests.list as farmingContest} +
+

+ {new Date( + skyblockTime(farmingContest.year, farmingContest.month, farmingContest.day) + ).toUTCString()} +

+
    + {#each farmingContest.crops as crop} + + {crop.amount.toLocaleString()} collected + {#if crop.position} + + (#{crop.position}/{crop.participants}) + + {/if} + + {/each} +
+
+ {/each} +
+ + -- cgit