blob: f62b429acbc358705402dee77133b1b34153edec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package gtPlusPlus.xmod.bartcrops.abstracts;
import gtPlusPlus.preloader.CORE_Preloader;
import ic2.api.crops.ICropTile;
public abstract class BaseAestheticCrop extends BaseHarvestableCrop {
public int tier() {
return 1;
}
public int stat(int n) {
switch (n) {
case 0 :
return 0;
case 1 :
return 0;
case 2 :
return 0;
case 3 :
return 4;
case 4 :
return 0;
default :
return 0;
}
}
public int growthDuration(ICropTile crop) {
return CORE_Preloader.DEBUG_MODE ? 1 : 225;
}
public byte getSizeAfterHarvest(ICropTile crop) {
return 1;
}
}
|