diff --git a/2.5DHero/2.5DHero/2.5DHero.vbproj b/2.5DHero/2.5DHero/2.5DHero.vbproj index 86556c411..b057ed25d 100644 --- a/2.5DHero/2.5DHero/2.5DHero.vbproj +++ b/2.5DHero/2.5DHero/2.5DHero.vbproj @@ -1042,6 +1042,7 @@ + @@ -1051,7 +1052,6 @@ - @@ -1410,6 +1410,7 @@ + @@ -1417,9 +1418,11 @@ + + @@ -1440,12 +1443,15 @@ + + + diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/FullIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/FullIncense.vb new file mode 100644 index 000000000..cdbbd640b --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/FullIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class FullIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense makes the holder bloated and slow moving." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(216, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/LaxIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/LaxIncense.vb new file mode 100644 index 000000000..19678aef6 --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/LaxIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class LaxIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The beguiling aroma of this incense may cause attacks to miss its holder." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(240, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/LuckIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/LuckIncense.vb new file mode 100644 index 000000000..3e497270d --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/LuckIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class LuckIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. The beguiling aroma of this incense may cause attacks to miss its holder." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(264, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/PureIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/PureIncense.vb new file mode 100644 index 000000000..3027bf9db --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/PureIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class PureIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It helps keep wild Pokémon away if the holder is the head of the party." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(288, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/RockIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/RockIncense.vb new file mode 100644 index 000000000..43d61da10 --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/RockIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class RockIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Rock-type moves." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(312, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/RoseIncense.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/RoseIncense.vb new file mode 100644 index 000000000..9d5819f7c --- /dev/null +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/RoseIncense.vb @@ -0,0 +1,20 @@ +Namespace Items.Standard + + + Public Class RoseIncense + + Inherits Item + + Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. This exotic-smelling incense boosts the power of Grass-type moves." + Public Overrides ReadOnly Property BattlePointsPrice As Integer = 9600 + Public Overrides ReadOnly Property FlingDamage As Integer = 10 + Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False + Public Overrides ReadOnly Property CanBeUsed As Boolean = False + + Public Sub New() + _textureRectangle = New Rectangle(336, 264, 24, 24) + End Sub + + End Class + +End Namespace diff --git a/2.5DHero/2.5DHeroContent/Items/ItemSheet.png b/2.5DHero/2.5DHeroContent/Items/ItemSheet.png index 1f16a4322..2c004300c 100644 Binary files a/2.5DHero/2.5DHeroContent/Items/ItemSheet.png and b/2.5DHero/2.5DHeroContent/Items/ItemSheet.png differ