summaryrefslogtreecommitdiff
path: root/src/com/pkrandom/pokemon/PickupItem.java
diff options
context:
space:
mode:
authorRafael Marçalo <public@rafaelmarcalo.xyz>2024-09-05 16:31:33 +0100
committerRafael Marçalo <public@rafaelmarcalo.xyz>2024-09-05 16:31:33 +0100
commit8b67572ad7e1508341345dc46a2597e9fa170cbb (patch)
tree8f37c4d60ce0f07b9eaf30be34f39298da97b242 /src/com/pkrandom/pokemon/PickupItem.java
parentb65f4a80da28e7ec4de16c8b1abf906e8d7be2c5 (diff)
Removed invasive brandingHEADmaster
Diffstat (limited to 'src/com/pkrandom/pokemon/PickupItem.java')
-rw-r--r--src/com/pkrandom/pokemon/PickupItem.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/com/pkrandom/pokemon/PickupItem.java b/src/com/pkrandom/pokemon/PickupItem.java
new file mode 100644
index 0000000..9b90683
--- /dev/null
+++ b/src/com/pkrandom/pokemon/PickupItem.java
@@ -0,0 +1,11 @@
+package com.pkrandom.pokemon;
+
+public class PickupItem {
+ public int item;
+ public int[] probabilities;
+
+ public PickupItem(int item) {
+ this.item = item;
+ this.probabilities = new int[10];
+ }
+}