2016-09-19 04:34:12 +02:00
|
|
|
Namespace Items.KeyItems
|
2016-09-07 18:50:38 +02:00
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
<Item(54, "Coin Case")>
|
2016-09-07 18:50:38 +02:00
|
|
|
Public Class CoinCase
|
|
|
|
|
2016-09-20 06:03:05 +02:00
|
|
|
Inherits KeyItem
|
2016-09-07 18:50:38 +02:00
|
|
|
|
2023-10-27 11:48:21 +02:00
|
|
|
Public Overrides ReadOnly Property Description As String = "A case for holding coins obtained at the Game Corner."
|
2016-09-20 06:03:05 +02:00
|
|
|
Public Overrides ReadOnly Property CanBeUsed As Boolean = True
|
2016-09-07 18:50:38 +02:00
|
|
|
|
2016-09-20 06:03:05 +02:00
|
|
|
Public Sub New()
|
|
|
|
_textureRectangle = New Rectangle(168, 48, 24, 24)
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
Public Overrides Sub Use()
|
2023-05-27 16:52:36 +02:00
|
|
|
Screen.TextBox.Show(Localization.GetString("item_use_54", "Your coins:~") & Core.Player.Coins, {}, True, True)
|
2016-09-07 18:50:38 +02:00
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|
|
|
|
|
2016-09-19 04:34:12 +02:00
|
|
|
End Namespace
|