fixed build
This commit is contained in:
parent
a5f9ba865d
commit
516e4f64f0
|
|
@ -151,7 +151,6 @@ export const userController = createController({
|
||||||
const result = weightedPickRandom(lootbox.items, (i) =>
|
const result = weightedPickRandom(lootbox.items, (i) =>
|
||||||
getWeight(i.rarity),
|
getWeight(i.rarity),
|
||||||
);
|
);
|
||||||
console.log(result);
|
|
||||||
collection.entries.push({
|
collection.entries.push({
|
||||||
id: result.id,
|
id: result.id,
|
||||||
aquired: Date.now(),
|
aquired: Date.now(),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { ServerGame } from "./gameType";
|
import type { ServerGame } from "./gameType";
|
||||||
|
|
||||||
const rotate = (arr: boolean[][]) => {
|
const rotate = (arr: boolean[][]) => {
|
||||||
return arr[0].map((_, colIndex) => arr.map((row) => row[colIndex]));
|
return arr[0].map((_, colIndex) => arr.map((row) => row[colIndex]));
|
||||||
|
|
|
||||||
|
|
@ -280,7 +280,6 @@ const Tile = ({
|
||||||
const resolveSprite = useCallback(
|
const resolveSprite = useCallback(
|
||||||
(lt: LoadedTexture) => {
|
(lt: LoadedTexture) => {
|
||||||
if (Array.isArray(lt)) {
|
if (Array.isArray(lt)) {
|
||||||
console.log("hash:", hashStr(game.uuid + ";" + x + ";" + y));
|
|
||||||
return weightedPickRandom(
|
return weightedPickRandom(
|
||||||
lt,
|
lt,
|
||||||
(i) => i.weight,
|
(i) => i.weight,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const MLGTheme: Theme = {
|
export const MLGTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,6 @@ export const useTheme = (theme: Theme) => {
|
||||||
return [key, loaded] as const;
|
return [key, loaded] as const;
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
console.log("loaded", Object.fromEntries(loadedEntries));
|
|
||||||
setLoadedTheme(Object.fromEntries(loadedEntries) as LoadedTheme);
|
setLoadedTheme(Object.fromEntries(loadedEntries) as LoadedTheme);
|
||||||
};
|
};
|
||||||
loadTheme();
|
loadTheme();
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const basicTheme: Theme = {
|
export const basicTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const blackAndWhiteTheme: Theme = {
|
export const blackAndWhiteTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const blackAndWhiteTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/black-and-white/tile.png"),
|
tile: () => import("../assets/themes/black-and-white/tile.png"),
|
||||||
revealed: () => import("../assets/themes/black-and-white/revealed.png"),
|
revealed: () => import("../assets/themes/black-and-white/revealed.png"),
|
||||||
flag: () => import("../assets/themes/black-and-white/flag.png"),
|
flag: () => import("../assets/themes/black-and-white/flag.png"),
|
||||||
questionMark: () => import("../assets/themes/black-and-white/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../assets/themes/black-and-white/question-mark.png"),
|
||||||
lastPos: () => import("../assets/themes/black-and-white/last-pos.png"),
|
lastPos: () => import("../assets/themes/black-and-white/last-pos.png"),
|
||||||
1: () => import("../assets/themes/black-and-white/1.png"),
|
1: () => import("../assets/themes/black-and-white/1.png"),
|
||||||
2: () => import("../assets/themes/black-and-white/2.png"),
|
2: () => import("../assets/themes/black-and-white/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const catsTheme: Theme = {
|
export const catsTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const circuitBinaryTheme: Theme = {
|
export const circuitBinaryTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const circuitTheme: Theme = {
|
export const circuitTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const crimson: Theme = {
|
export const crimson: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,16 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const nauticalTheme: Theme = {
|
export const nauticalTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
mine: () => import("../../assets/themes/color-palettes/nautical/mine.png"),
|
mine: () => import("../../assets/themes/color-palettes/nautical/mine.png"),
|
||||||
tile: () => import("../../assets/themes/color-palettes/nautical/tile.png"),
|
tile: () => import("../../assets/themes/color-palettes/nautical/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/color-palettes/nautical/revealed.png"),
|
revealed: () =>
|
||||||
|
import("../../assets/themes/color-palettes/nautical/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/color-palettes/nautical/flag.png"),
|
flag: () => import("../../assets/themes/color-palettes/nautical/flag.png"),
|
||||||
questionMark: () =>
|
questionMark: () =>
|
||||||
import("../../assets/themes/color-palettes/nautical/question-mark.png"),
|
import("../../assets/themes/color-palettes/nautical/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/color-palettes/nautical/last-pos.png"),
|
lastPos: () =>
|
||||||
|
import("../../assets/themes/color-palettes/nautical/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/color-palettes/nautical/1.png"),
|
1: () => import("../../assets/themes/color-palettes/nautical/1.png"),
|
||||||
2: () => import("../../assets/themes/color-palettes/nautical/2.png"),
|
2: () => import("../../assets/themes/color-palettes/nautical/2.png"),
|
||||||
3: () => import("../../assets/themes/color-palettes/nautical/3.png"),
|
3: () => import("../../assets/themes/color-palettes/nautical/3.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,21 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const shadowWarriorTheme: Theme = {
|
export const shadowWarriorTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
mine: () => import("../../assets/themes/color-palettes/shadow-warrior/mine.png"),
|
mine: () =>
|
||||||
tile: () => import("../../assets/themes/color-palettes/shadow-warrior/tile.png"),
|
import("../../assets/themes/color-palettes/shadow-warrior/mine.png"),
|
||||||
revealed: () => import("../../assets/themes/color-palettes/shadow-warrior/revealed.png"),
|
tile: () =>
|
||||||
flag: () => import("../../assets/themes/color-palettes/shadow-warrior/flag.png"),
|
import("../../assets/themes/color-palettes/shadow-warrior/tile.png"),
|
||||||
|
revealed: () =>
|
||||||
|
import("../../assets/themes/color-palettes/shadow-warrior/revealed.png"),
|
||||||
|
flag: () =>
|
||||||
|
import("../../assets/themes/color-palettes/shadow-warrior/flag.png"),
|
||||||
questionMark: () =>
|
questionMark: () =>
|
||||||
import("../../assets/themes/color-palettes/shadow-warrior/question-mark.png"),
|
import(
|
||||||
lastPos: () => import("../../assets/themes/color-palettes/shadow-warrior/last-pos.png"),
|
"../../assets/themes/color-palettes/shadow-warrior/question-mark.png"
|
||||||
|
),
|
||||||
|
lastPos: () =>
|
||||||
|
import("../../assets/themes/color-palettes/shadow-warrior/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/color-palettes/shadow-warrior/1.png"),
|
1: () => import("../../assets/themes/color-palettes/shadow-warrior/1.png"),
|
||||||
2: () => import("../../assets/themes/color-palettes/shadow-warrior/2.png"),
|
2: () => import("../../assets/themes/color-palettes/shadow-warrior/2.png"),
|
||||||
3: () => import("../../assets/themes/color-palettes/shadow-warrior/3.png"),
|
3: () => import("../../assets/themes/color-palettes/shadow-warrior/3.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const upInSmokeTheme: Theme = {
|
export const upInSmokeTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const blueTheme: Theme = {
|
export const blueTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const blueTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/blue/tile.png"),
|
tile: () => import("../../assets/themes/colors/blue/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/blue/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/blue/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/blue/flag.png"),
|
flag: () => import("../../assets/themes/colors/blue/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/blue/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/blue/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/blue/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/blue/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/blue/1.png"),
|
1: () => import("../../assets/themes/colors/blue/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/blue/2.png"),
|
2: () => import("../../assets/themes/colors/blue/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const greenTheme: Theme = {
|
export const greenTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const greenTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/green/tile.png"),
|
tile: () => import("../../assets/themes/colors/green/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/green/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/green/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/green/flag.png"),
|
flag: () => import("../../assets/themes/colors/green/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/green/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/green/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/green/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/green/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/green/1.png"),
|
1: () => import("../../assets/themes/colors/green/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/green/2.png"),
|
2: () => import("../../assets/themes/colors/green/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const orangeTheme: Theme = {
|
export const orangeTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const orangeTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/orange/tile.png"),
|
tile: () => import("../../assets/themes/colors/orange/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/orange/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/orange/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/orange/flag.png"),
|
flag: () => import("../../assets/themes/colors/orange/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/orange/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/orange/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/orange/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/orange/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/orange/1.png"),
|
1: () => import("../../assets/themes/colors/orange/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/orange/2.png"),
|
2: () => import("../../assets/themes/colors/orange/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const pinkTheme: Theme = {
|
export const pinkTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const pinkTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/pink/tile.png"),
|
tile: () => import("../../assets/themes/colors/pink/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/pink/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/pink/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/pink/flag.png"),
|
flag: () => import("../../assets/themes/colors/pink/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/pink/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/pink/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/pink/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/pink/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/pink/1.png"),
|
1: () => import("../../assets/themes/colors/pink/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/pink/2.png"),
|
2: () => import("../../assets/themes/colors/pink/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const purpleTheme: Theme = {
|
export const purpleTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const purpleTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/purple/tile.png"),
|
tile: () => import("../../assets/themes/colors/purple/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/purple/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/purple/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/purple/flag.png"),
|
flag: () => import("../../assets/themes/colors/purple/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/purple/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/purple/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/purple/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/purple/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/purple/1.png"),
|
1: () => import("../../assets/themes/colors/purple/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/purple/2.png"),
|
2: () => import("../../assets/themes/colors/purple/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const redTheme: Theme = {
|
export const redTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const redTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/red/tile.png"),
|
tile: () => import("../../assets/themes/colors/red/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/red/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/red/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/red/flag.png"),
|
flag: () => import("../../assets/themes/colors/red/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/red/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/red/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/red/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/red/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/red/1.png"),
|
1: () => import("../../assets/themes/colors/red/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/red/2.png"),
|
2: () => import("../../assets/themes/colors/red/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const turquoiseTheme: Theme = {
|
export const turquoiseTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const turquoiseTheme: Theme = {
|
||||||
tile: () => import("../../assets/themes/colors/turquoise/tile.png"),
|
tile: () => import("../../assets/themes/colors/turquoise/tile.png"),
|
||||||
revealed: () => import("../../assets/themes/colors/turquoise/revealed.png"),
|
revealed: () => import("../../assets/themes/colors/turquoise/revealed.png"),
|
||||||
flag: () => import("../../assets/themes/colors/turquoise/flag.png"),
|
flag: () => import("../../assets/themes/colors/turquoise/flag.png"),
|
||||||
questionMark: () => import("../../assets/themes/colors/turquoise/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../../assets/themes/colors/turquoise/question-mark.png"),
|
||||||
lastPos: () => import("../../assets/themes/colors/turquoise/last-pos.png"),
|
lastPos: () => import("../../assets/themes/colors/turquoise/last-pos.png"),
|
||||||
1: () => import("../../assets/themes/colors/turquoise/1.png"),
|
1: () => import("../../assets/themes/colors/turquoise/1.png"),
|
||||||
2: () => import("../../assets/themes/colors/turquoise/2.png"),
|
2: () => import("../../assets/themes/colors/turquoise/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "../Theme";
|
import type { Theme } from "../Theme";
|
||||||
|
|
||||||
export const yellowTheme: Theme = {
|
export const yellowTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const defaultTheme: Theme = {
|
export const defaultTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const dinoTheme: Theme = {
|
export const dinoTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const eldenRingTheme: Theme = {
|
export const eldenRingTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const farmTheme: Theme = {
|
export const farmTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const flowersTheme: Theme = {
|
export const flowersTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const halliGalliTheme: Theme = {
|
export const halliGalliTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import { retroWaveTheme } from "./retro-wave";
|
||||||
import { romanceTheme } from "./romance";
|
import { romanceTheme } from "./romance";
|
||||||
import { techiesDireTheme } from "./techies-dire";
|
import { techiesDireTheme } from "./techies-dire";
|
||||||
import { techiesRadiantTheme } from "./techies-radiant";
|
import { techiesRadiantTheme } from "./techies-radiant";
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
import { tronBlueTheme } from "./tron-blue";
|
import { tronBlueTheme } from "./tron-blue";
|
||||||
import { tronOrangeTheme } from "./tron-orange";
|
import { tronOrangeTheme } from "./tron-orange";
|
||||||
import { underwaterTheme } from "./underwater";
|
import { underwaterTheme } from "./underwater";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const insectsTheme: Theme = {
|
export const insectsTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const isaacTheme: Theme = {
|
export const isaacTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const janitorTreshTheme: Theme = {
|
export const janitorTreshTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const leagueTeemoTheme: Theme = {
|
export const leagueTeemoTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,8 +6,7 @@ export const leagueTeemoTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/league/tile-1.png"),
|
tile: () => import("../assets/themes/league/tile-1.png"),
|
||||||
revealed: () => import("../assets/themes/league/revealed.png"),
|
revealed: () => import("../assets/themes/league/revealed.png"),
|
||||||
flag: () => import("../assets/themes/league/teemo/flag.png"),
|
flag: () => import("../assets/themes/league/teemo/flag.png"),
|
||||||
questionMark: () =>
|
questionMark: () => import("../assets/themes/league/question-mark.png"),
|
||||||
import("../assets/themes/league/question-mark.png"),
|
|
||||||
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
||||||
1: () => import("../assets/themes/league/1.png"),
|
1: () => import("../assets/themes/league/1.png"),
|
||||||
2: () => import("../assets/themes/league/2.png"),
|
2: () => import("../assets/themes/league/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const leagueZiggsTheme: Theme = {
|
export const leagueZiggsTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,8 +6,7 @@ export const leagueZiggsTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/league/tile-1.png"),
|
tile: () => import("../assets/themes/league/tile-1.png"),
|
||||||
revealed: () => import("../assets/themes/league/revealed.png"),
|
revealed: () => import("../assets/themes/league/revealed.png"),
|
||||||
flag: () => import("../assets/themes/league/ziggs/flag.png"),
|
flag: () => import("../assets/themes/league/ziggs/flag.png"),
|
||||||
questionMark: () =>
|
questionMark: () => import("../assets/themes/league/question-mark.png"),
|
||||||
import("../assets/themes/league/question-mark.png"),
|
|
||||||
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
lastPos: () => import("../assets/themes/league/last-pos.png"),
|
||||||
1: () => import("../assets/themes/league/1.png"),
|
1: () => import("../assets/themes/league/1.png"),
|
||||||
2: () => import("../assets/themes/league/2.png"),
|
2: () => import("../assets/themes/league/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const mineDogsTheme: Theme = {
|
export const mineDogsTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const minecraftNetherTheme: Theme = {
|
export const minecraftNetherTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const minecraftNetherTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/minecraft-nether/tile.png"),
|
tile: () => import("../assets/themes/minecraft-nether/tile.png"),
|
||||||
revealed: () => import("../assets/themes/minecraft-nether/revealed.png"),
|
revealed: () => import("../assets/themes/minecraft-nether/revealed.png"),
|
||||||
flag: () => import("../assets/themes/minecraft-nether/flag.png"),
|
flag: () => import("../assets/themes/minecraft-nether/flag.png"),
|
||||||
questionMark: () => import("../assets/themes/minecraft-nether/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../assets/themes/minecraft-nether/question-mark.png"),
|
||||||
lastPos: () => import("../assets/themes/minecraft-nether/last-pos.png"),
|
lastPos: () => import("../assets/themes/minecraft-nether/last-pos.png"),
|
||||||
1: () => import("../assets/themes/minecraft-nether/1.png"),
|
1: () => import("../assets/themes/minecraft-nether/1.png"),
|
||||||
2: () => import("../assets/themes/minecraft-nether/2.png"),
|
2: () => import("../assets/themes/minecraft-nether/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const minecraftOverworldTheme: Theme = {
|
export const minecraftOverworldTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const minecraftOverworldTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/minecraft-overworld/tile.png"),
|
tile: () => import("../assets/themes/minecraft-overworld/tile.png"),
|
||||||
revealed: () => import("../assets/themes/minecraft-overworld/revealed.png"),
|
revealed: () => import("../assets/themes/minecraft-overworld/revealed.png"),
|
||||||
flag: () => import("../assets/themes/minecraft-overworld/flag.png"),
|
flag: () => import("../assets/themes/minecraft-overworld/flag.png"),
|
||||||
questionMark: () => import("../assets/themes/minecraft-overworld/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../assets/themes/minecraft-overworld/question-mark.png"),
|
||||||
lastPos: () => import("../assets/themes/minecraft-overworld/last-pos.png"),
|
lastPos: () => import("../assets/themes/minecraft-overworld/last-pos.png"),
|
||||||
1: () => import("../assets/themes/minecraft-overworld/1.png"),
|
1: () => import("../assets/themes/minecraft-overworld/1.png"),
|
||||||
2: () => import("../assets/themes/minecraft-overworld/2.png"),
|
2: () => import("../assets/themes/minecraft-overworld/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const poopTheme: Theme = {
|
export const poopTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const retroWaveTheme: Theme = {
|
export const retroWaveTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const techiesRadiantTheme: Theme = {
|
export const techiesRadiantTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
@ -6,7 +6,8 @@ export const techiesRadiantTheme: Theme = {
|
||||||
tile: () => import("../assets/themes/techies/radiant/tile-1.png"),
|
tile: () => import("../assets/themes/techies/radiant/tile-1.png"),
|
||||||
revealed: () => import("../assets/themes/techies/radiant/revealed-1.png"),
|
revealed: () => import("../assets/themes/techies/radiant/revealed-1.png"),
|
||||||
flag: () => import("../assets/themes/techies/flag.png"),
|
flag: () => import("../assets/themes/techies/flag.png"),
|
||||||
questionMark: () => import("../assets/themes/techies/radiant/question-mark.png"),
|
questionMark: () =>
|
||||||
|
import("../assets/themes/techies/radiant/question-mark.png"),
|
||||||
lastPos: () => import("../assets/themes/techies/radiant/last-pos.png"),
|
lastPos: () => import("../assets/themes/techies/radiant/last-pos.png"),
|
||||||
1: () => import("../assets/themes/techies/radiant/1.png"),
|
1: () => import("../assets/themes/techies/radiant/1.png"),
|
||||||
2: () => import("../assets/themes/techies/radiant/2.png"),
|
2: () => import("../assets/themes/techies/radiant/2.png"),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const tronBlueTheme: Theme = {
|
export const tronBlueTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const tronOrangeTheme: Theme = {
|
export const tronOrangeTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { Theme } from "./Theme";
|
import type { Theme } from "./Theme";
|
||||||
|
|
||||||
export const underwaterTheme: Theme = {
|
export const underwaterTheme: Theme = {
|
||||||
size: 32,
|
size: 32,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue