Add Farming Guild farming patch world map tooltips (#7268)

Adds farming patch type tooltips to farming guild patches on world map.
This commit is contained in:
Journey
2019-01-12 04:01:17 -06:00
committed by Tomas Slusny
parent 0dc204f224
commit 39727de67f

View File

@@ -31,7 +31,10 @@ import net.runelite.api.coords.WorldPoint;
@Getter
enum FarmingPatchLocation
{
ALLOTMENT("Allotment", new WorldPoint(3793, 2836, 0)),
ALLOTMENT("Allotment",
new WorldPoint(3793, 2836, 0),
new WorldPoint(1269, 3730, 0)
),
ALLOTMENT_HERB_FLOWER("Allotment/Herb/Flower",
new WorldPoint(1809, 3490, 0),
new WorldPoint(3598, 3524, 0),
@@ -39,6 +42,7 @@ enum FarmingPatchLocation
new WorldPoint(2810, 3462, 0),
new WorldPoint(2663, 3375, 0)
),
ANIMA_HERB("Anima/Herb", new WorldPoint(1235, 3724, 0)),
BELLADONNA("Belladonna", new WorldPoint(3084, 3356, 0)),
BUSH("Bush",
new WorldPoint(2938, 3223, 0),
@@ -46,8 +50,15 @@ enum FarmingPatchLocation
new WorldPoint(3182, 3356, 0),
new WorldPoint(2615, 3224, 0)
),
CACTUS("Cactus", new WorldPoint(3313, 3201, 0)),
BUSH_FLOWER("Bush/Flower", new WorldPoint(1259, 3729, 0)),
CACTUS("Cactus",
new WorldPoint(3313, 3201, 0),
new WorldPoint(1264, 3745, 0)
),
CALQUAT("Calquat", new WorldPoint(2793, 3099, 0)),
CELASTRUS_FRUIT_TREE("Celastrus/Fruit Tree",
new WorldPoint(1242, 3755, 0)
),
FRUIT_TREE("Fruit Tree",
new WorldPoint(2487, 3181, 0),
new WorldPoint(2343, 3160, 0),
@@ -64,6 +75,7 @@ enum FarmingPatchLocation
new WorldPoint(2847, 3933, 0),
new WorldPoint(2828, 3696, 0)
),
HESPORI("Hespori", new WorldPoint(1182, 10068, 0)),
HOPS("Hops",
new WorldPoint(2572, 3102, 0),
new WorldPoint(2661, 3523, 0),
@@ -71,19 +83,22 @@ enum FarmingPatchLocation
new WorldPoint(3812, 3334, 0)
),
MUSHROOM("Mushroom", new WorldPoint(3449, 3471, 0)),
REDWOOD("Redwood", new WorldPoint(1233, 3754, 0)),
SEAWEED("Seaweed", new WorldPoint(3730, 10271, 0)),
SPIRIT_TREE("Spirit Tree",
new WorldPoint(3056, 3259, 0),
new WorldPoint(1690, 3540, 0),
new WorldPoint(3614, 3856, 0),
new WorldPoint(2799, 3205, 0)
new WorldPoint(2799, 3205, 0),
new WorldPoint(1254, 3753, 0)
),
TREE("Tree",
new WorldPoint(3226, 3457, 0),
new WorldPoint(2933, 3436, 0),
new WorldPoint(3189, 3233, 0),
new WorldPoint(2434, 3418, 0),
new WorldPoint(3005, 3375, 0)
new WorldPoint(3005, 3375, 0),
new WorldPoint(1234, 3736, 0)
);
private final String tooltip;