blob: 2b1a8cd6e8fc11defe0ab040ee6ea8b5fbfad2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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.useMatcher
import moe.nea.ledger.utils.di.Inject
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class EyedropsDetection {
val capsaicinEyedropsUsed = "You applied the eyedrops on the minion and ran out!".toPattern()
@Inject
lateinit var logger: LedgerLogger
@SubscribeEvent
fun onChat(event: ChatReceived) {
capsaicinEyedropsUsed.useMatcher(event.message) {
logger.logEntry(
LedgerEntry(
TransactionType.CAPSAICIN_EYEDROPS_USED,
event.timestamp,
listOf(
ItemChange.lose(ItemId.CAP_EYEDROPS, 1)
)
)
)
}
}
}
|