diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-16 20:46:41 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-16 20:46:41 +0100 |
commit | 2cc7d668eacba1919208ba6b131b01fe10bbf0ed (patch) | |
tree | 8490092dbffcc729acc4a3679028ba633e395fae /mod/src/main/kotlin/moe/nea/ledger/ItemId.kt | |
parent | 0cb08682bc6b759a054066e145cb0332a40f42a7 (diff) | |
download | LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.tar.gz LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.tar.bz2 LocalTransactionLedger-2cc7d668eacba1919208ba6b131b01fe10bbf0ed.zip |
refactor: Move some basetypes and fix: Kuudra chest and dungeon chest detection mixing
Diffstat (limited to 'mod/src/main/kotlin/moe/nea/ledger/ItemId.kt')
-rw-r--r-- | mod/src/main/kotlin/moe/nea/ledger/ItemId.kt | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/mod/src/main/kotlin/moe/nea/ledger/ItemId.kt b/mod/src/main/kotlin/moe/nea/ledger/ItemId.kt deleted file mode 100644 index 8211cd3..0000000 --- a/mod/src/main/kotlin/moe/nea/ledger/ItemId.kt +++ /dev/null @@ -1,35 +0,0 @@ -package moe.nea.ledger - -import moe.nea.ledger.utils.NoSideEffects - -data class ItemId( - val string: String -) { - @NoSideEffects - fun singleItem(): Pair<ItemId, Double> { - return withStackSize(1) - } - - @NoSideEffects - fun withStackSize(size: Number): Pair<ItemId, Double> { - return Pair(this, size.toDouble()) - } - - - companion object { - - @JvmStatic - @NoSideEffects - fun forName(string: String) = ItemId(string) - fun skill(skill: String) = ItemId("SKYBLOCK_SKILL_$skill") - - val GARDEN = skill("GARDEN") - val FARMING = skill("FARMING") - - - val COINS = ItemId("SKYBLOCK_COIN") - val GEMSTONE_POWDER = ItemId("SKYBLOCK_POWDER_GEMSTONE") - val MITHRIL_POWDER = ItemId("SKYBLOCK_POWDER_MITHRIL") - val NIL = ItemId("SKYBLOCK_NIL") - } -}
\ No newline at end of file |