 205ca7fa37
			
		
	
	205ca7fa37
	
	
	
		
			
			* Fix logic bug on daggerfish * Make new region for pond. * Fix SVE logic for crops * Fix Distant Lands Cropsanity * Fix failing tests. * Reverting removing these for now. * Fix bugs, add combat requirement * convert str into tuple directly * add ginger island to mod tests * Move a lot of mod item logic to content pack * Gut the rules from DL while we're at it. * Import nuke * Fix alecto * Move back some rules for now. * Move archaeology rules * Add some comments why its done. * Clean up archaeology and fix sve * Moved dulse to water item class * Remove digging like worms for now * fix * Add missing shipsanity location * Move background names around or something idk * Revert ArchaeologyTrash for now --------- Co-authored-by: Jouramie <jouramie@hotmail.com>
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from ..game_content import ContentPack
 | |
| from ..mod_registry import register_mod_content_pack
 | |
| from ...data import villagers_data
 | |
| from ...mods.mod_data import ModNames
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.alec,
 | |
|     villagers=(
 | |
|         villagers_data.alec,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.ayeisha,
 | |
|     villagers=(
 | |
|         villagers_data.ayeisha,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.delores,
 | |
|     villagers=(
 | |
|         villagers_data.delores,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.eugene,
 | |
|     villagers=(
 | |
|         villagers_data.eugene,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.juna,
 | |
|     villagers=(
 | |
|         villagers_data.juna,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.ginger,
 | |
|     villagers=(
 | |
|         villagers_data.kitty,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.shiko,
 | |
|     villagers=(
 | |
|         villagers_data.shiko,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.wellwick,
 | |
|     villagers=(
 | |
|         villagers_data.wellwick,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.yoba,
 | |
|     villagers=(
 | |
|         villagers_data.yoba,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.riley,
 | |
|     villagers=(
 | |
|         villagers_data.riley,
 | |
|     )
 | |
| ))
 | |
| 
 | |
| register_mod_content_pack(ContentPack(
 | |
|     ModNames.lacey,
 | |
|     villagers=(
 | |
|         villagers_data.lacey,
 | |
|     )
 | |
| ))
 |