def __init__(self,letter,params=[]):
     ParametricModule.__init__(self, letter, params)
 def __init__(self,letter,params=[],weight=1,scale_min=0,scale_max=1):
     ParametricModule.__init__(self, letter, params)
     self.weight = weight                # Must be [1,100]. The higher, the more likely this will appear in the generation
     self.scale_min = scale_min          # Determines the minimum random value that this module can have as a single parameter
     self.scale_max = scale_max          # Determines the maximum random value that this module can have as a single parameter