Ajout des mutations Sauveteuse, Adaptative et résistante, ajout des crédits du jeu et d'un splash screen (+ un peu de debug)

This commit is contained in:
2026-07-10 14:34:27 +02:00
parent 22b753c6a9
commit 3caab11468
34 changed files with 729 additions and 158 deletions
@@ -0,0 +1,20 @@
extends PlantMutation
class_name ResistantMutation
func get_icon() -> Texture:
return preload("res://common/icons/radioactive.svg")
func get_mutation_id() -> String:
return "RESISTANT"
func get_base_rarity() -> int:
return 0
func get_mutation_description() -> String:
return tr("RESISTANT_EFFECT_TEXT")
func is_max_level() -> bool:
return true
func allow_planting_on_decontamined_terrain(_seed : Seed) -> bool:
return true