49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
class ModNames:
 | 
						|
    vanilla = None
 | 
						|
    deepwoods = "DeepWoods"
 | 
						|
    tractor = "Tractor Mod"
 | 
						|
    big_backpack = "Bigger Backpack"
 | 
						|
    luck_skill = "Luck Skill"
 | 
						|
    magic = "Magic"
 | 
						|
    socializing_skill = "Socializing Skill"
 | 
						|
    archaeology = "Archaeology"
 | 
						|
    cooking_skill = "Cooking Skill"
 | 
						|
    binning_skill = "Binning Skill"
 | 
						|
    juna = "Juna - Roommate NPC"
 | 
						|
    jasper = "Professor Jasper Thomas"
 | 
						|
    alec = "Alec Revisited"
 | 
						|
    yoba = "Custom NPC - Yoba"
 | 
						|
    eugene = "Custom NPC Eugene"
 | 
						|
    wellwick = "'Prophet' Wellwick"
 | 
						|
    ginger = "Mister Ginger (cat npc)"
 | 
						|
    shiko = "Shiko - New Custom NPC"
 | 
						|
    delores = "Delores - Custom NPC"
 | 
						|
    ayeisha = "Ayeisha - The Postal Worker (Custom NPC)"
 | 
						|
    riley = "Custom NPC - Riley"
 | 
						|
    skull_cavern_elevator = "Skull Cavern Elevator"
 | 
						|
 | 
						|
 | 
						|
mod_versions = {
 | 
						|
    ModNames.deepwoods: "3.0.0-beta",
 | 
						|
    ModNames.tractor: "4.16.4",
 | 
						|
    ModNames.big_backpack: "6.0.0",
 | 
						|
    ModNames.luck_skill: "1.2.4",
 | 
						|
    ModNames.magic: "0.8.2",
 | 
						|
    ModNames.socializing_skill: "1.1.5",
 | 
						|
    ModNames.archaeology: "1.5.0",
 | 
						|
    ModNames.cooking_skill: "1.4.5",
 | 
						|
    ModNames.binning_skill: "1.2.7",
 | 
						|
    ModNames.juna: "2.1.3",
 | 
						|
    ModNames.jasper: "1.7.6",
 | 
						|
    ModNames.alec: "2.1.0",
 | 
						|
    ModNames.yoba: "1.0.0",
 | 
						|
    ModNames.eugene: "1.3.1",
 | 
						|
    ModNames.wellwick: "1.0.0",
 | 
						|
    ModNames.ginger: "1.5.9",
 | 
						|
    ModNames.shiko: "1.1.0",
 | 
						|
    ModNames.delores: "1.1.2",
 | 
						|
    ModNames.ayeisha: "0.5.0-alpha",
 | 
						|
    ModNames.riley: "1.2.2",
 | 
						|
    ModNames.skull_cavern_elevator: "1.5.0",
 | 
						|
}
 |