mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-16 14:02:37 +08:00
d1d39db56c
-De-hardcode elemental orb values -De-hardcode exp items -Change ShopChest format (temporary, drop system overhaul will replace it entirely) -Food healing actually uses Ability data for real HP amounts
20 lines
479 B
Java
20 lines
479 B
Java
package emu.grasscutter.game.props.ItemUseAction;
|
|
|
|
import emu.grasscutter.game.props.ItemUseOp;
|
|
import lombok.Getter;
|
|
|
|
public class ItemUseAddExp extends ItemUseAction {
|
|
@Getter private int exp = 0;
|
|
|
|
@Override
|
|
public ItemUseOp getItemUseOp() {
|
|
return ItemUseOp.ITEM_USE_ADD_EXP;
|
|
}
|
|
|
|
public ItemUseAddExp(String[] useParam) {
|
|
try {
|
|
this.exp = Integer.parseInt(useParam[0]);
|
|
} catch (NumberFormatException ignored) {}
|
|
}
|
|
}
|