branches and one texture

This commit is contained in:
Altaezio
2026-02-13 11:18:34 +01:00
parent ab5089ad6c
commit e6d34a50a5
76 changed files with 359 additions and 1386 deletions

View File

@@ -2,9 +2,8 @@ extends Resource
class_name PlantMutation
@export var level : int = 1
@export var possible_parts: Array[PlantPart]
@export var part_amount: int = 1
var id : String : get = get_mutation_id
var name : String : get = get_mutation_name
func _init(_level : int = 1):
@@ -16,6 +15,10 @@ func get_icon() -> Texture:
func get_base_rarity() -> int:
return 0
func get_mutation_id() -> String:
printerr("Classe abstraite PlantMutation appelée")
return ""
func get_mutation_name() -> String:
printerr("Classe abstraite PlantMutation appelée")
return ""