From 0198febf9d314a8b4feb48dbf1039a50e22a0ddc Mon Sep 17 00:00:00 2001 From: gregf36665 Date: Tue, 17 Dec 2024 17:43:23 +0000 Subject: [PATCH] Start adding tea making listeners --- .../global/skill/cooking/TeaInteraction.kt | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Server/src/main/content/global/skill/cooking/TeaInteraction.kt diff --git a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt new file mode 100644 index 000000000..6eb2d3cf9 --- /dev/null +++ b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt @@ -0,0 +1,21 @@ +package content.global.skill.cooking + +import core.game.interaction.InteractionListener + +/** + * This deals with all tea mixtures + * cup of tea + * nettle tea + * nettle water + * nettle tea (cup) + * poh tea + * clay + * porcelain + * gold trim + */ +class TeaInteraction : InteractionListener { + override fun defineListeners() { + onUseWith(ITEM, ) + TODO("Not yet implemented") + } +} \ No newline at end of file