Revert "Halloween Event (#2285)"

This reverts commit b69adf70b3.
This commit is contained in:
evanpelle
2025-11-04 09:26:48 -08:00
parent ca28db735f
commit 4144628808
28 changed files with 63 additions and 212 deletions
+5 -5
View File
@@ -289,17 +289,17 @@ export function createRandomName(
}
export const emojiTable = [
["😀", "😊", "😇", "😎", "😈"],
["😀", "😊", "🥰", "😇", "😎"],
["😞", "🥺", "😭", "😱", "😡"],
["", "🥱", "🤦‍♂️", "🖕", "🤡"],
["👋", "👏", "👻", "💪", "🎃"],
["😈", "🤡", "🖕", "🥱", "🤦‍♂️"],
["👋", "👏", "🤌", "💪", "🫡"],
["👍", "👎", "❓", "🐔", "🐀"],
["🆘", "🤝", "🕊️", "🏳️", "🛡️"],
["🤝", "🆘", "🕊️", "🏳️", ""],
["🔥", "💥", "💀", "☢️", "⚠️"],
["↖️", "⬆️", "↗️", "👑", "🥇"],
["⬅️", "🎯", "➡️", "🥈", "🥉"],
["↙️", "⬇️", "↘️", "❤️", "💔"],
["💰", "🏭", "🚂", "", ""],
["💰", "", "", "🏡", "🛡️"],
] as const;
// 2d to 1d array
export const flattenedEmojiTable = emojiTable.flat();
+9 -9
View File
@@ -18,7 +18,7 @@ export class PastelTheme implements Theme {
private nationColorAllocator = new ColorAllocator(nationColors, nationColors);
private background = colord({ r: 60, g: 60, b: 60 });
private shore = colord({ r: 223, g: 187, b: 132 });
private shore = colord({ r: 204, g: 203, b: 158 });
private falloutColors = [
colord({ r: 120, g: 255, b: 71 }), // Original color
colord({ r: 130, g: 255, b: 85 }), // Slightly lighter
@@ -26,8 +26,8 @@ export class PastelTheme implements Theme {
colord({ r: 125, g: 255, b: 75 }), // Warmer tint
colord({ r: 115, g: 250, b: 68 }), // Cooler tint
];
private water = colord({ r: 80, g: 76, b: 179 });
private shorelineWater = colord({ r: 100, g: 110, b: 255 });
private water = colord({ r: 70, g: 132, b: 180 });
private shorelineWater = colord({ r: 100, g: 143, b: 255 });
private _selfColor = colord({ r: 0, g: 255, b: 0 });
private _allyColor = colord({ r: 255, g: 255, b: 0 });
@@ -97,15 +97,15 @@ export class PastelTheme implements Theme {
}
case TerrainType.Plains:
return colord({
r: 216,
g: 205 - 2 * mag,
b: 127,
r: 190,
g: 220 - 2 * mag,
b: 138,
});
case TerrainType.Highland:
return colord({
r: 223 + 2 * mag,
g: 187 + 2 * mag,
b: 132 + 2 * mag,
r: 200 + 2 * mag,
g: 183 + 2 * mag,
b: 138 + 2 * mag,
});
case TerrainType.Mountain:
return colord({
+1 -1
View File
@@ -20,7 +20,7 @@ const EMOJI_ASSIST_ACCEPT = (["👍", "⛵", "🤝", "🎯"] as const).map(emoji
const EMOJI_RELATION_TOO_LOW = (["🥱", "🤦‍♂️"] as const).map(emojiId);
const EMOJI_TARGET_ME = (["🥺", "💀"] as const).map(emojiId);
const EMOJI_TARGET_ALLY = (["🕊️", "👎"] as const).map(emojiId);
export const EMOJI_HECKLE = (["👻", "🎃"] as const).map(emojiId);
export const EMOJI_HECKLE = (["🤡", "😡"] as const).map(emojiId);
export class BotBehavior {
private enemy: Player | null = null;