| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | from __future__ import annotations | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from dataclasses import dataclass | 
					
						
							|  |  |  | from typing import List, Tuple, Union, Optional | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  | from ..strings.monster_names import Monster | 
					
						
							|  |  |  | from ..strings.fish_names import WaterChest | 
					
						
							|  |  |  | from ..strings.forageable_names import Forageable | 
					
						
							|  |  |  | from ..strings.metal_names import Mineral, Artifact, Fossil | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  | from ..strings.region_names import Region | 
					
						
							|  |  |  | from ..strings.geode_names import Geode | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @dataclass(frozen=True) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  | class MuseumItem: | 
					
						
							|  |  |  |     item_name: str | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |     locations: Tuple[str, ...] | 
					
						
							|  |  |  |     geodes: Tuple[str, ...] | 
					
						
							|  |  |  |     monsters: Tuple[str, ...] | 
					
						
							|  |  |  |     difficulty: float | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @staticmethod | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     def of(item_name: str, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |            difficulty: float, | 
					
						
							|  |  |  |            locations: Union[str, Tuple[str, ...]], | 
					
						
							|  |  |  |            geodes: Union[str, Tuple[str, ...]], | 
					
						
							|  |  |  |            monsters: Union[str, Tuple[str, ...]]) -> MuseumItem: | 
					
						
							|  |  |  |         if isinstance(locations, str): | 
					
						
							|  |  |  |             locations = (locations,) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if isinstance(geodes, str): | 
					
						
							|  |  |  |             geodes = (geodes,) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if isinstance(monsters, str): | 
					
						
							|  |  |  |             monsters = (monsters,) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |         return MuseumItem(item_name, locations, geodes, monsters, difficulty) | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __repr__(self): | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |         return f"{self.item_name} (Locations: {self.locations} |" \ | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                f" Geodes: {self.geodes} |" \ | 
					
						
							|  |  |  |                f" Monsters: {self.monsters}) " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unlikely = () | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-16 10:18:50 -04:00
										 |  |  | all_museum_artifacts: List[MuseumItem] = [] | 
					
						
							|  |  |  | all_museum_minerals: List[MuseumItem] = [] | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | all_museum_items: List[MuseumItem] = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def create_artifact(name: str, | 
					
						
							|  |  |  |                     difficulty: float, | 
					
						
							|  |  |  |                     locations: Union[str, Tuple[str, ...]] = (), | 
					
						
							|  |  |  |                     geodes: Union[str, Tuple[str, ...]] = (), | 
					
						
							|  |  |  |                     monsters: Union[str, Tuple[str, ...]] = ()) -> MuseumItem: | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     artifact_item = MuseumItem.of(name, difficulty, locations, geodes, monsters) | 
					
						
							| 
									
										
										
										
											2023-08-16 10:18:50 -04:00
										 |  |  |     all_museum_artifacts.append(artifact_item) | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |     all_museum_items.append(artifact_item) | 
					
						
							|  |  |  |     return artifact_item | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def create_mineral(name: str, | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |                    locations: Union[str, Tuple[str, ...]] = (), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                    geodes: Union[str, Tuple[str, ...]] = (), | 
					
						
							|  |  |  |                    monsters: Union[str, Tuple[str, ...]] = (), | 
					
						
							|  |  |  |                    difficulty: Optional[float] = None) -> MuseumItem: | 
					
						
							|  |  |  |     if difficulty is None: | 
					
						
							|  |  |  |         difficulty = 0 | 
					
						
							|  |  |  |         if "Geode" in geodes: | 
					
						
							|  |  |  |             difficulty += 1.0 / 32.0 * 100 | 
					
						
							|  |  |  |         if "Frozen Geode" in geodes: | 
					
						
							|  |  |  |             difficulty += 1.0 / 30.0 * 100 | 
					
						
							|  |  |  |         if "Magma Geode" in geodes: | 
					
						
							|  |  |  |             difficulty += 1.0 / 26.0 * 100 | 
					
						
							|  |  |  |         if "Omni Geode" in geodes: | 
					
						
							|  |  |  |             difficulty += 31.0 / 2750.0 * 100 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     mineral_item = MuseumItem.of(name, difficulty, locations, geodes, monsters) | 
					
						
							| 
									
										
										
										
											2023-08-16 10:18:50 -04:00
										 |  |  |     all_museum_minerals.append(mineral_item) | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |     all_museum_items.append(mineral_item) | 
					
						
							|  |  |  |     return mineral_item | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Artifact: | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarf_scroll_i = create_artifact("Dwarf Scroll I", 5.6, Region.mines_floor_20, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                      monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarf_scroll_ii = create_artifact("Dwarf Scroll II", 3, Region.mines_floor_20, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                       monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarf_scroll_iii = create_artifact("Dwarf Scroll III", 7.5, Region.mines_floor_60, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                        monsters=Monster.blue_slime) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarf_scroll_iv = create_artifact("Dwarf Scroll IV", 4, Region.mines_floor_100) | 
					
						
							|  |  |  |     chipped_amphora = create_artifact("Chipped Amphora", 6.7, Region.town, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                       geodes=Geode.artifact_trove) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     arrowhead = create_artifact("Arrowhead", 8.5, (Region.mountain, Region.forest, Region.bus_stop), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                 geodes=Geode.artifact_trove) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     ancient_doll = create_artifact("Ancient Doll", 13.1, (Region.mountain, Region.forest, Region.bus_stop), | 
					
						
							|  |  |  |                                    geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     elvish_jewelry = create_artifact("Elvish Jewelry", 5.3, Region.forest, | 
					
						
							|  |  |  |                                      geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     chewing_stick = create_artifact("Chewing Stick", 10.3, (Region.mountain, Region.forest, Region.town), | 
					
						
							|  |  |  |                                     geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     ornamental_fan = create_artifact("Ornamental Fan", 7.4, (Region.beach, Region.forest, Region.town), | 
					
						
							|  |  |  |                                      geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     dinosaur_egg = create_artifact("Dinosaur Egg", 11.4, (Region.mountain, Region.skull_cavern), | 
					
						
							|  |  |  |                                    geodes=WaterChest.fishing_chest, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                    monsters=Monster.pepper_rex) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     rare_disc = create_artifact("Rare Disc", 5.6, Region.stardew_valley, | 
					
						
							|  |  |  |                                 geodes=(Geode.artifact_trove, WaterChest.fishing_chest), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                 monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     ancient_sword = create_artifact("Ancient Sword", 5.8, (Region.forest, Region.mountain), | 
					
						
							|  |  |  |                                     geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     rusty_spoon = create_artifact("Rusty Spoon", 9.6, Region.town, | 
					
						
							|  |  |  |                                   geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     rusty_spur = create_artifact("Rusty Spur", 15.6, Region.farm, | 
					
						
							|  |  |  |                                  geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     rusty_cog = create_artifact("Rusty Cog", 9.6, Region.mountain, | 
					
						
							|  |  |  |                                 geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     chicken_statue = create_artifact("Chicken Statue", 13.5, Region.farm, | 
					
						
							|  |  |  |                                      geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     ancient_seed = create_artifact("Ancient Seed", 8.4, (Region.forest, Region.mountain), | 
					
						
							|  |  |  |                                    geodes=(Geode.artifact_trove, WaterChest.fishing_chest), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                    monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     prehistoric_tool = create_artifact("Prehistoric Tool", 11.1, (Region.mountain, Region.forest, Region.bus_stop), | 
					
						
							|  |  |  |                                        geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     dried_starfish = create_artifact("Dried Starfish", 12.5, Region.beach, | 
					
						
							|  |  |  |                                      geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     anchor = create_artifact("Anchor", 8.5, Region.beach, geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     glass_shards = create_artifact("Glass Shards", 11.5, Region.beach, | 
					
						
							|  |  |  |                                    geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     bone_flute = create_artifact("Bone Flute", 6.3, (Region.mountain, Region.forest, Region.town), | 
					
						
							|  |  |  |                                  geodes=(Geode.artifact_trove, WaterChest.fishing_chest)) | 
					
						
							|  |  |  |     prehistoric_handaxe = create_artifact(Artifact.prehistoric_handaxe, 13.7, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                           (Region.mountain, Region.forest, Region.bus_stop), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                           geodes=Geode.artifact_trove) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarvish_helm = create_artifact("Dwarvish Helm", 8.7, Region.mines_floor_20, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                     geodes=(Geode.geode, Geode.omni, Geode.artifact_trove)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dwarf_gadget = create_artifact("Dwarf Gadget", 9.7, Region.mines_floor_60, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                    geodes=(Geode.magma, Geode.omni, Geode.artifact_trove)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     ancient_drum = create_artifact("Ancient Drum", 9.5, (Region.bus_stop, Region.forest, Region.town), | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                    geodes=(Geode.frozen, Geode.omni, Geode.artifact_trove)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     golden_mask = create_artifact("Golden Mask", 6.7, Region.desert, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                   geodes=Geode.artifact_trove) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     golden_relic = create_artifact("Golden Relic", 9.7, Region.desert, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                    geodes=Geode.artifact_trove) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     strange_doll_green = create_artifact("Strange Doll (Green)", 10, Region.town, | 
					
						
							|  |  |  |                                          geodes=Forageable.secret_note) | 
					
						
							|  |  |  |     strange_doll = create_artifact("Strange Doll", 10, Region.desert, | 
					
						
							|  |  |  |                                    geodes=Forageable.secret_note) | 
					
						
							|  |  |  |     prehistoric_scapula = create_artifact("Prehistoric Scapula", 6.2, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                           (Region.dig_site, Region.forest, Region.town)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     prehistoric_tibia = create_artifact("Prehistoric Tibia", 16.6, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                         (Region.dig_site, Region.forest, Region.railroad)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     prehistoric_skull = create_artifact("Prehistoric Skull", 3.9, (Region.dig_site, Region.mountain)) | 
					
						
							|  |  |  |     skeletal_hand = create_artifact(Fossil.skeletal_hand, 7.9, (Region.dig_site, Region.backwoods, Region.beach)) | 
					
						
							|  |  |  |     prehistoric_rib = create_artifact("Prehistoric Rib", 15, (Region.dig_site, Region.farm, Region.town), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                       monsters=Monster.pepper_rex) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     prehistoric_vertebra = create_artifact("Prehistoric Vertebra", 12.7, (Region.dig_site, Region.bus_stop), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                            monsters=Monster.pepper_rex) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     skeletal_tail = create_artifact("Skeletal Tail", 5.1, (Region.dig_site, Region.mines_floor_20), | 
					
						
							|  |  |  |                                     geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     nautilus_fossil = create_artifact("Nautilus Fossil", 6.9, (Region.dig_site, Region.beach), | 
					
						
							|  |  |  |                                       geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     amphibian_fossil = create_artifact("Amphibian Fossil", 6.3, (Region.dig_site, Region.forest, Region.mountain), | 
					
						
							|  |  |  |                                        geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     palm_fossil = create_artifact("Palm Fossil", 10.2, | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                   (Region.dig_site, Region.desert, Region.forest, Region.beach)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     trilobite = create_artifact("Trilobite", 7.4, (Region.dig_site, Region.desert, Region.forest, Region.beach)) | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Mineral: | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     quartz = create_mineral(Mineral.quartz, Region.mines_floor_20) | 
					
						
							|  |  |  |     fire_quartz = create_mineral("Fire Quartz", Region.mines_floor_100, | 
					
						
							|  |  |  |                                  geodes=(Geode.magma, Geode.omni, WaterChest.fishing_chest), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                  difficulty=1.0 / 12.0) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     frozen_tear = create_mineral("Frozen Tear", Region.mines_floor_60, | 
					
						
							|  |  |  |                                  geodes=(Geode.frozen, Geode.omni, WaterChest.fishing_chest), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                  monsters=unlikely, | 
					
						
							|  |  |  |                                  difficulty=1.0 / 12.0) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     earth_crystal = create_mineral("Earth Crystal", Region.mines_floor_20, | 
					
						
							|  |  |  |                                    geodes=(Geode.geode, Geode.omni, WaterChest.fishing_chest), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                    monsters=Monster.duggy, | 
					
						
							|  |  |  |                                    difficulty=1.0 / 12.0) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     emerald = create_mineral("Emerald", Region.mines_floor_100, | 
					
						
							|  |  |  |                              geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     aquamarine = create_mineral("Aquamarine", Region.mines_floor_60, | 
					
						
							|  |  |  |                                 geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     ruby = create_mineral("Ruby", Region.mines_floor_100, | 
					
						
							|  |  |  |                           geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     amethyst = create_mineral("Amethyst", Region.mines_floor_20, | 
					
						
							|  |  |  |                               geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     topaz = create_mineral("Topaz", Region.mines_floor_20, | 
					
						
							|  |  |  |                            geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     jade = create_mineral("Jade", Region.mines_floor_60, | 
					
						
							|  |  |  |                           geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     diamond = create_mineral("Diamond", Region.mines_floor_60, | 
					
						
							|  |  |  |                              geodes=WaterChest.fishing_chest) | 
					
						
							|  |  |  |     prismatic_shard = create_mineral("Prismatic Shard", Region.skull_cavern_100, | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                                      geodes=unlikely, | 
					
						
							|  |  |  |                                      monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     alamite = create_mineral("Alamite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     bixite = create_mineral("Bixite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.magma, Geode.omni), | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  |                             monsters=unlikely) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     baryte = create_mineral("Baryte", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     aerinite = create_mineral("Aerinite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     calcite = create_mineral("Calcite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dolomite = create_mineral("Dolomite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     esperite = create_mineral("Esperite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     fluorapatite = create_mineral("Fluorapatite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                   geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     geminite = create_mineral("Geminite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     helvite = create_mineral("Helvite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     jamborite = create_mineral("Jamborite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     jagoite = create_mineral("Jagoite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     kyanite = create_mineral("Kyanite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     lunarite = create_mineral("Lunarite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     malachite = create_mineral("Malachite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     neptunite = create_mineral("Neptunite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     lemon_stone = create_mineral("Lemon Stone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                  geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     nekoite = create_mineral("Nekoite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     orpiment = create_mineral("Orpiment", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     petrified_slime = create_mineral(Mineral.petrified_slime, Region.slime_hutch) | 
					
						
							|  |  |  |     thunder_egg = create_mineral("Thunder Egg", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                  geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     pyrite = create_mineral("Pyrite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     ocean_stone = create_mineral("Ocean Stone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                  geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     ghost_crystal = create_mineral("Ghost Crystal", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                    geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     tigerseye = create_mineral("Tigerseye", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     jasper = create_mineral("Jasper", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     opal = create_mineral("Opal", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                           geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     fire_opal = create_mineral("Fire Opal", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     celestine = create_mineral("Celestine", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     marble = create_mineral("Marble", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     sandstone = create_mineral("Sandstone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     granite = create_mineral("Granite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                              geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     basalt = create_mineral("Basalt", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                             geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     limestone = create_mineral("Limestone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     soapstone = create_mineral("Soapstone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                                geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     hematite = create_mineral("Hematite", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.frozen, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     mudstone = create_mineral("Mudstone", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.geode, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     obsidian = create_mineral("Obsidian", | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |                               geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     slate = create_mineral("Slate", geodes=(Geode.geode, Geode.omni)) | 
					
						
							|  |  |  |     fairy_stone = create_mineral("Fairy Stone", geodes=(Geode.frozen, Geode.omni)) | 
					
						
							|  |  |  |     star_shards = create_mineral("Star Shards", geodes=(Geode.magma, Geode.omni)) | 
					
						
							| 
									
										
										
										
											2023-04-10 19:44:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | dwarf_scrolls = (Artifact.dwarf_scroll_i, Artifact.dwarf_scroll_ii, Artifact.dwarf_scroll_iii, Artifact.dwarf_scroll_iv) | 
					
						
							|  |  |  | skeleton_front = (Artifact.prehistoric_skull, Artifact.skeletal_hand, Artifact.prehistoric_scapula) | 
					
						
							|  |  |  | skeleton_middle = (Artifact.prehistoric_rib, Artifact.prehistoric_vertebra) | 
					
						
							|  |  |  | skeleton_back = (Artifact.prehistoric_tibia, Artifact.skeletal_tail) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  | all_museum_items_by_name = {item.item_name: item for item in all_museum_items} |