10
10
from ...mods .mod_data import ModNames
11
11
from ...strings .craftable_names import ModEdible
12
12
from ...strings .crop_names import Fruit , SVEVegetable , SVEFruit
13
- from ...strings .fish_names import WaterItem , SVEFish , SVEWaterItem
13
+ from ...strings .fish_names import WaterItem , SVEWaterItem
14
14
from ...strings .flower_names import Flower
15
15
from ...strings .food_names import SVEMeal , SVEBeverage
16
16
from ...strings .forageable_names import Mushroom , Forageable , SVEForage
17
17
from ...strings .gift_names import SVEGift
18
- from ...strings .metal_names import Ore
19
- from ...strings .monster_drop_names import ModLoot , Loot
18
+ from ...strings .monster_drop_names import ModLoot
20
19
from ...strings .performance_names import Performance
21
- from ...strings .region_names import Region , SVERegion , LogicRegion
20
+ from ...strings .region_names import Region , SVERegion
22
21
from ...strings .season_names import Season
23
22
from ...strings .seed_names import SVESeed
24
23
from ...strings .skill_names import Skill
@@ -81,7 +80,8 @@ def harvest_source_hook(self, content: StardewContent):
81
80
ModEdible .lightning_elixir : (ShopSource (money_price = 12000 , shop_region = SVERegion .galmoran_outpost ),),
82
81
ModEdible .barbarian_elixir : (ShopSource (money_price = 22000 , shop_region = SVERegion .galmoran_outpost ),),
83
82
ModEdible .gravity_elixir : (ShopSource (money_price = 4000 , shop_region = SVERegion .galmoran_outpost ),),
84
- SVEMeal .grampleton_orange_chicken : (ShopSource (money_price = 650 , shop_region = Region .saloon , other_requirements = (RelationshipRequirement (ModNPC .sophia , 6 ),)),),
83
+ SVEMeal .grampleton_orange_chicken : (
84
+ ShopSource (money_price = 650 , shop_region = Region .saloon , other_requirements = (RelationshipRequirement (ModNPC .sophia , 6 ),)),),
85
85
ModEdible .hero_elixir : (ShopSource (money_price = 8000 , shop_region = SVERegion .isaac_shop ),),
86
86
ModEdible .aegis_elixir : (ShopSource (money_price = 28000 , shop_region = SVERegion .galmoran_outpost ),),
87
87
SVEBeverage .sports_drink : (ShopSource (money_price = 750 , shop_region = Region .hospital ),),
@@ -92,7 +92,8 @@ def harvest_source_hook(self, content: StardewContent):
92
92
ForagingSource (regions = (SVERegion .forest_west ,), seasons = (Season .summer , Season .fall )), ForagingSource (regions = (SVERegion .sprite_spring_cave ,), )
93
93
),
94
94
Mushroom .purple : (
95
- ForagingSource (regions = (SVERegion .forest_west ,), seasons = (Season .fall ,)), ForagingSource (regions = (SVERegion .sprite_spring_cave , SVERegion .junimo_woods ), )
95
+ ForagingSource (regions = (SVERegion .forest_west ,), seasons = (Season .fall ,)),
96
+ ForagingSource (regions = (SVERegion .sprite_spring_cave , SVERegion .junimo_woods ), )
96
97
),
97
98
Mushroom .morel : (
98
99
ForagingSource (regions = (SVERegion .forest_west ,), seasons = (Season .fall ,)), ForagingSource (regions = (SVERegion .sprite_spring_cave ,), )
@@ -117,7 +118,8 @@ def harvest_source_hook(self, content: StardewContent):
117
118
118
119
ModLoot .green_mushroom : (ForagingSource (regions = (SVERegion .highlands_pond ,), seasons = Season .not_winter ),),
119
120
ModLoot .ornate_treasure_chest : (ForagingSource (regions = (SVERegion .highlands_outside ,),
120
- other_requirements = (CombatRequirement (Performance .galaxy ), ToolRequirement (Tool .axe , ToolMaterial .iron ))),),
121
+ other_requirements = (
122
+ CombatRequirement (Performance .galaxy ), ToolRequirement (Tool .axe , ToolMaterial .iron ))),),
121
123
ModLoot .swirl_stone : (ForagingSource (regions = (SVERegion .crimson_badlands ,), other_requirements = (CombatRequirement (Performance .galaxy ),)),),
122
124
ModLoot .void_soul : (ForagingSource (regions = (SVERegion .crimson_badlands ,), other_requirements = (CombatRequirement (Performance .good ),)),),
123
125
SVEForage .winter_star_rose : (ForagingSource (regions = (SVERegion .summit ,), seasons = (Season .winter ,)),),
@@ -137,7 +139,8 @@ def harvest_source_hook(self, content: StardewContent):
137
139
SVEForage .thistle : (ForagingSource (regions = (SVERegion .summit ,)),),
138
140
ModLoot .void_pebble : (ForagingSource (regions = (SVERegion .crimson_badlands ,), other_requirements = (CombatRequirement (Performance .great ),)),),
139
141
ModLoot .void_shard : (ForagingSource (regions = (SVERegion .crimson_badlands ,),
140
- other_requirements = (CombatRequirement (Performance .galaxy ), SkillRequirement (Skill .combat , 10 ), YearRequirement (3 ),)),),
142
+ other_requirements = (
143
+ CombatRequirement (Performance .galaxy ), SkillRequirement (Skill .combat , 10 ), YearRequirement (3 ),)),),
141
144
SVEWaterItem .dulse_seaweed : (ForagingSource (regions = (Region .beach ,), other_requirements = (FishingRequirement (Region .beach ),)),),
142
145
143
146
# Fable Reef
0 commit comments