70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
class Fruit:
 | 
						|
    sweet_gem_berry = "Sweet Gem Berry"
 | 
						|
    any = "Any Fruit"
 | 
						|
    blueberry = "Blueberry"
 | 
						|
    melon = "Melon"
 | 
						|
    apple = "Apple"
 | 
						|
    apricot = "Apricot"
 | 
						|
    cherry = "Cherry"
 | 
						|
    orange = "Orange"
 | 
						|
    peach = "Peach"
 | 
						|
    pomegranate = "Pomegranate"
 | 
						|
    banana = "Banana"
 | 
						|
    mango = "Mango"
 | 
						|
    pineapple = "Pineapple"
 | 
						|
    ancient_fruit = "Ancient Fruit"
 | 
						|
    strawberry = "Strawberry"
 | 
						|
    starfruit = "Starfruit"
 | 
						|
    rhubarb = "Rhubarb"
 | 
						|
    grape = "Grape"
 | 
						|
    cranberries = "Cranberries"
 | 
						|
    hot_pepper = "Hot Pepper"
 | 
						|
    powdermelon = "Powdermelon"
 | 
						|
    qi_fruit = "Qi Fruit"
 | 
						|
 | 
						|
 | 
						|
class Vegetable:
 | 
						|
    any = "Any Vegetable"
 | 
						|
    parsnip = "Parsnip"
 | 
						|
    garlic = "Garlic"
 | 
						|
    bok_choy = "Bok Choy"
 | 
						|
    wheat = "Wheat"
 | 
						|
    potato = "Potato"
 | 
						|
    corn = "Corn"
 | 
						|
    tomato = "Tomato"
 | 
						|
    pumpkin = "Pumpkin"
 | 
						|
    unmilled_rice = "Unmilled Rice"
 | 
						|
    beet = "Beet"
 | 
						|
    hops = "Hops"
 | 
						|
    cauliflower = "Cauliflower"
 | 
						|
    amaranth = "Amaranth"
 | 
						|
    kale = "Kale"
 | 
						|
    artichoke = "Artichoke"
 | 
						|
    tea_leaves = "Tea Leaves"
 | 
						|
    eggplant = "Eggplant"
 | 
						|
    green_bean = "Green Bean"
 | 
						|
    red_cabbage = "Red Cabbage"
 | 
						|
    yam = "Yam"
 | 
						|
    radish = "Radish"
 | 
						|
    taro_root = "Taro Root"
 | 
						|
    carrot = "Carrot"
 | 
						|
    summer_squash = "Summer Squash"
 | 
						|
    broccoli = "Broccoli"
 | 
						|
 | 
						|
 | 
						|
class SVEFruit:
 | 
						|
    slime_berry = "Slime Berry"
 | 
						|
    monster_fruit = "Monster Fruit"
 | 
						|
    salal_berry = "Salal Berry"
 | 
						|
 | 
						|
 | 
						|
class SVEVegetable:
 | 
						|
    monster_mushroom = "Monster Mushroom"
 | 
						|
    void_root = "Void Root"
 | 
						|
    ancient_fiber = "Ancient Fiber"
 | 
						|
 | 
						|
 | 
						|
class DistantLandsCrop:
 | 
						|
    void_mint = "Void Mint Leaves"
 | 
						|
    vile_ancient_fruit = "Vile Ancient Fruit"
 |