diff options
| author | ilotterytea <iltsu@alright.party> | 2022-09-01 14:57:59 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-09-01 14:57:59 +0600 |
| commit | a1a0235574f5d618a79301448e05015134136530 (patch) | |
| tree | 1c41bec6d381c91b2380ab6cd209cda12330bb8a /core | |
| parent | 764bc942acc55591a64005fb788f2a5fe8184a0d (diff) | |
id for maxon item
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/player/MaxonItem.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/src/com/ilotterytea/maxoning/player/MaxonItem.java b/core/src/com/ilotterytea/maxoning/player/MaxonItem.java index b7347ef..18ee402 100644 --- a/core/src/com/ilotterytea/maxoning/player/MaxonItem.java +++ b/core/src/com/ilotterytea/maxoning/player/MaxonItem.java @@ -3,17 +3,21 @@ package com.ilotterytea.maxoning.player; import com.ilotterytea.maxoning.ui.AnimatedImage; public class MaxonItem { + public int id; public String name; public String desc; public AnimatedImage icon; public MaxonItemEnum type; public float price; + public float multiplier; - public MaxonItem(String name, String desc, AnimatedImage icon, MaxonItemEnum type, float price) { + public MaxonItem(int id, String name, String desc, AnimatedImage icon, MaxonItemEnum type, float price, float multiplier) { + this.id = id; this.name = name; this.desc = desc; this.icon = icon; this.type = type; this.price = price; + this.multiplier = multiplier; } }
\ No newline at end of file |
