extends PlantMutation class_name ProlificMutation func get_icon() -> Texture: return preload("res://common/icons/droplets.svg") func get_mutation_id() -> String: return "PROLIFIC" func get_mutation_description() -> String: return tr("PROLIFIC_EFFECT_TEXT").format({ "seeds_change": get_seed_change(), "seeds_icon": Text.bbcode_icon(Plant.SEED_ICON) }) func mutate_seed_number(_plant_data: PlantData, seed_number: int) -> int: return get_seed_change() + seed_number func get_seed_change(): return level