Pömpel angefangen

This commit is contained in:
Simon Lübeß
2024-04-07 18:28:23 +02:00
parent 543b35567a
commit 145a45e066
21 changed files with 1260 additions and 6 deletions

View File

@ -199,6 +199,9 @@ public class Character : MonoBehaviour
case ItemType.Pizza:
developer.GiveFood(0.25, WantedConsumable.Pizza);
break;
default:
SayItsImpossible();
return;
}
item.UsesLeft--;

View File

@ -6,7 +6,8 @@ namespace Interaction
{
Mate,
Coffee,
Pizza
Pizza,
Plunger
}
public class PickupInteractible : Interactible