This commit is contained in:
sainagh
2024-05-25 09:31:20 -07:00
parent 9bc8b6f851
commit 9bccd068fd
393 changed files with 83107 additions and 5857 deletions
+31
View File
@@ -255,3 +255,34 @@ sacredcindersfruit.onItemFoodEaten = function(stack, world, player) {
player.sendChat("Stay Hungry. Stay Foolish.");
};
sacredcindersfruit.register();
// __________________________________________________
var ethicalempanada = VanillaFactory.createItemFood("ethical_empanada", 5);
ethicalempanada.saturation = 1;
ethicalempanada.onItemFoodEaten = function(stack, world, player) {
player.sendChat("We can't judge if people are good or evil, but we can definitely judge if their actions are good or evil!");
};
ethicalempanada.register();
var nimblehummusdip = VanillaFactory.createItemFood("nimble_hummus_dip", 5);
nimblehummusdip.saturation = 1;
nimblehummusdip.onItemFoodEaten = function(stack, world, player) {
player.sendChat("Stretching is important, especially after sitting down at a desk all day!");
};
nimblehummusdip.register();
var heavypolenta = VanillaFactory.createItemFood("heavy_polenta", 5);
heavypolenta.saturation = 1;
heavypolenta.onItemFoodEaten = function(stack, world, player) {
player.sendChat("Did you walk your 10'000 steps today?");
};
heavypolenta.register();
var multifruitmilkshake = VanillaFactory.createItemFood("multi_fruit_milkshake", 5);
multifruitmilkshake.saturation = 1;
multifruitmilkshake.onItemFoodEaten = function(stack, world, player) {
player.sendChat("Feels like it's time for a 10-minute abs workout!");
};
multifruitmilkshake.register();