mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
18 lines
401 B
Python
18 lines
401 B
Python
![]() |
class Fertilizer:
|
||
|
basic = "Basic Fertilizer"
|
||
|
quality = "Quality Fertilizer"
|
||
|
deluxe = "Deluxe Fertilizer"
|
||
|
tree = "Tree Fertilizer"
|
||
|
|
||
|
|
||
|
class RetainingSoil:
|
||
|
basic = "Basic Retaining Soil"
|
||
|
quality = "Quality Retaining Soil"
|
||
|
deluxe = "Deluxe Retaining Soil"
|
||
|
|
||
|
|
||
|
class SpeedGro:
|
||
|
basic = "Speed-Gro"
|
||
|
deluxe = "Deluxe Speed-Gro"
|
||
|
hyper = "Hyper Speed-Gro"
|