aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt')
-rw-r--r--src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt b/src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt
deleted file mode 100644
index b9f70c4..0000000
--- a/src/main/kotlin/moe/nea/ledger/modules/DragonEyePlacementDetection.kt
+++ /dev/null
@@ -1,46 +0,0 @@
-package moe.nea.ledger.modules
-
-import moe.nea.ledger.ItemChange
-import moe.nea.ledger.ItemId
-import moe.nea.ledger.LedgerEntry
-import moe.nea.ledger.LedgerLogger
-import moe.nea.ledger.TransactionType
-import moe.nea.ledger.events.ChatReceived
-import moe.nea.ledger.events.WorldSwitchEvent
-import moe.nea.ledger.useMatcher
-import moe.nea.ledger.utils.di.Inject
-import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
-
-class DragonEyePlacementDetection {
- val eyePlaced = "☬ You placed a Summoning Eye!( Brace yourselves!)? \\(./.\\)".toPattern()
-//☬ You placed a Summoning Eye! Brace yourselves! (8/8)
- var eyeCount = 0
-
- @SubscribeEvent
- fun onWorldSwap(event: WorldSwitchEvent) {
- eyeCount = 0
- }
-
- @SubscribeEvent
- fun onRetrieveEye(event: ChatReceived) {
- if (event.message == "You recovered a Summoning Eye!") {
- eyeCount--
- }
- eyePlaced.useMatcher(event.message) {
- eyeCount++
- }
- if (event.message == "Your Sleeping Eyes have been awoken by the magic of the Dragon. They are now Remnants of the Eye!") {
- logger.logEntry(LedgerEntry(
- TransactionType.WYRM_EVOKED,
- event.timestamp,
- listOf(
- ItemChange.lose(ItemId.SUMMONING_EYE, eyeCount)
- )
- ))
- eyeCount = 0
- }
- }
-
- @Inject
- lateinit var logger: LedgerLogger
-} \ No newline at end of file