FEATURE: Gem Drop System - Diamond, Emerald, Ruby, Sapphire rare drops with rarity chances + sell values

This commit is contained in:
2025-12-11 13:09:49 +01:00
parent 47a170ccb8
commit ca4e0fc40e
3 changed files with 191 additions and 1 deletions

View File

@@ -24,7 +24,9 @@ class LootSystem {
const symbols = {
'wood': '🪵', 'stone': '🪨', 'seeds': '🌱', 'wheat': '🌾',
'axe': '🪓', 'pickaxe': '⛏️', 'sword': '⚔️', 'hoe': '🚜',
'item_bone': '🦴', 'flower': '🌸'
'item_bone': '🦴', 'flower': '🌸',
'diamond': '💎', 'emerald': '💚', 'ruby': '❤️', // GEMS!
'gold_coin': '🪙', 'iron': '⚙️'
};
if (symbols[type]) symbol = symbols[type];