RuneHive-Game
Loading...
Searching...
No Matches
Plant.java
Go to the documentation of this file.
1
package
com.runehive.content.skill.impl.farming.plants;
2
3
public
interface
Plant
{
4
5
int
getSeedId
();
6
7
int
getSeedAmount
();
8
9
int
getLevelRequired
();
10
11
12
int
getGrowthTime
();
13
14
int
getStartingState
();
15
16
int
getEndingState
();
17
18
int
getFlowerProtect
();
19
20
int
getHarvestId
();
21
22
double
getHarvestXp
();
23
24
double
getPlantingXp
();
25
26
int
[]
getPaymentToWatch
();
27
28
String
getProductType
();
29
30
String[][]
getInspectMessages
();
31
32
}
com.runehive.content.skill.impl.farming.plants.Plant
Definition
Plant.java:3
com.runehive.content.skill.impl.farming.plants.Plant.getStartingState
int getStartingState()
com.runehive.content.skill.impl.farming.plants.Plant.getFlowerProtect
int getFlowerProtect()
com.runehive.content.skill.impl.farming.plants.Plant.getSeedId
int getSeedId()
com.runehive.content.skill.impl.farming.plants.Plant.getPlantingXp
double getPlantingXp()
com.runehive.content.skill.impl.farming.plants.Plant.getPaymentToWatch
int[] getPaymentToWatch()
com.runehive.content.skill.impl.farming.plants.Plant.getGrowthTime
int getGrowthTime()
com.runehive.content.skill.impl.farming.plants.Plant.getHarvestId
int getHarvestId()
com.runehive.content.skill.impl.farming.plants.Plant.getInspectMessages
String[][] getInspectMessages()
com.runehive.content.skill.impl.farming.plants.Plant.getProductType
String getProductType()
com.runehive.content.skill.impl.farming.plants.Plant.getSeedAmount
int getSeedAmount()
com.runehive.content.skill.impl.farming.plants.Plant.getLevelRequired
int getLevelRequired()
com.runehive.content.skill.impl.farming.plants.Plant.getHarvestXp
double getHarvestXp()
com.runehive.content.skill.impl.farming.plants.Plant.getEndingState
int getEndingState()