mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-10 10:20:41 -07:00
Implemented ground guam as a tar recipe
This commit is contained in:
parent
68c1e572b9
commit
9d2e173f71
1 changed files with 6 additions and 1 deletions
|
|
@ -1,13 +1,18 @@
|
||||||
package content.global.skill.herblore;
|
package content.global.skill.herblore;
|
||||||
|
|
||||||
import core.game.node.item.Item;
|
import core.game.node.item.Item;
|
||||||
|
import org.rs09.consts.Items;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a tar to create.
|
* Represents a tar to create.
|
||||||
* @author 'Vexia
|
* @author 'Vexia
|
||||||
*/
|
*/
|
||||||
public enum Tars {
|
public enum Tars {
|
||||||
GUAM_TAR(Herbs.GUAM.getProduct(), 19, 30, new Item(10142)), MARRENTILL_TAR(Herbs.MARRENTILL.getProduct(), 31, 42.5, new Item(10143)), TARROMIN_TAR(Herbs.TARROMIN.getProduct(), 39, 55, new Item(10144)), HARRALANDER_TAR(Herbs.HARRALANDER.getProduct(), 44, 72.5, new Item(10145));
|
GUAM_TAR(Herbs.GUAM.getProduct(), 19, 30, new Item(10142)),
|
||||||
|
GROUND_GUAM_TAR(new Item(Items.GROUND_GUAM_6681), 19, 30, new Item(10142)),
|
||||||
|
MARRENTILL_TAR(Herbs.MARRENTILL.getProduct(), 31, 42.5, new Item(10143)),
|
||||||
|
TARROMIN_TAR(Herbs.TARROMIN.getProduct(), 39, 55, new Item(10144)),
|
||||||
|
HARRALANDER_TAR(Herbs.HARRALANDER.getProduct(), 44, 72.5, new Item(10145));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the ingredient.
|
* Represents the ingredient.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue