mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-17 15:22:34 +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
507 B
Java
20 lines
507 B
Java
package emu.grasscutter.game.props.ItemUseAction;
|
|
|
|
import emu.grasscutter.game.props.ItemUseOp;
|
|
import lombok.Getter;
|
|
|
|
public class ItemUseAddReliquaryExp extends ItemUseAction {
|
|
@Getter private int exp = 0;
|
|
|
|
@Override
|
|
public ItemUseOp getItemUseOp() {
|
|
return ItemUseOp.ITEM_USE_ADD_RELIQUARY_EXP;
|
|
}
|
|
|
|
public ItemUseAddReliquaryExp(String[] useParam) {
|
|
try {
|
|
this.exp = Integer.parseInt(useParam[0]);
|
|
} catch (NumberFormatException ignored) {}
|
|
}
|
|
}
|