glow orbs

This commit is contained in:
minjaesong
2024-07-12 04:21:09 +09:00
parent 5a4c300612
commit 92f28887ec
11 changed files with 75 additions and 18 deletions

View File

@@ -73,4 +73,16 @@ class ItemCherryBomb(originalID: ItemID) : ItemThrowable(originalID, "net.torval
init {
itemImage = CommonResourcePool.getAsItemSheet("basegame.items").get(0,13)
}
}
/**
* Created by minjaesong on 2024-07-12.
*/
class ItemGlowOrb(originalID: ItemID) : ItemThrowable(originalID, "net.torvald.terrarum.modulebasegame.gameactors.ActorGlowOrb") {
override var originalName = "ITEM_GLOW_ORB"
init {
itemImage = CommonResourcePool.getAsItemSheet("basegame.items").get(1,13)
}
// itemImageEmissive is not set because held glow orb does not glow (they get activated only when thrown)
}