filler

Yummy Cherry

A yummy cherry. Nothign Else

← Back to main

Code Block:


api.giveItem(myId, "Cherry", 1);
      

World Code:


onPlayerFinishChargingItem = (playerId, used, itemName, duration) => {
  if (itemName === "Cherry" && used === true){
	api.sendMessage(playerId, "MMMM its a YUMY CHERRY. YUM YUM YUM", {color: "pink"})
    api.removeEffect(playerId, "Health Regen")
  }
}