ajout de deux nouveaux outils, le couteau et la truelle #91

This commit is contained in:
2025-10-17 18:27:39 +02:00
parent f1ef41323a
commit 4a76cb5302
18 changed files with 283 additions and 34 deletions

View File

@@ -37,6 +37,14 @@ func get_possible_rewards() -> Array[Compost.Reward]:
Compost.GiveItemReward.new(
get_random_reward_cost(),
Blueprint.new(preload("res://entities/interactables/machines/solar_pannel/solar_pannel.tres"))
),
Compost.GiveItemReward.new(
get_random_reward_cost(),
Knife.new()
),
Compost.GiveItemReward.new(
get_random_reward_cost(),
Trowel.new()
)
]