-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
xconf.json
48 lines (48 loc) · 1.34 KB
/
xconf.json
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
38
39
40
41
42
43
44
45
46
47
48
{
"srcDir": "src/main/java",
"resourcesDir": "src/main/resources",
"domain": "academy",
"locPrefix": "ac_",
"itemConfigs": [
{
"file": "src/main/raw/items.conf",
"classPath": "cn.academy.ACItems"
},
{
"file": "src/main/raw/items_ic2.conf",
"classPath": "cn.academy.support.ic2.ACIC2Items",
"classAnnotations": [
"@Optional.Interface(modid = IC2Support.IC2_MODID, iface = IC2Support.IC2_IFACE)"
]
}
],
"blockConfigs": [
{
"file": "src/main/raw/blocks.conf",
"classPath": "cn.academy.ACBlocks"
},
{
"file": "src/main/raw/blocks_ic2.conf",
"classPath": "cn.academy.support.ic2.ACIC2Blocks",
"classAnnotations": [
"@Optional.Interface(modid = IC2Support.IC2_MODID, iface = IC2Support.IC2_IFACE)"
]
}
],
"advsDataFile": "src/main/raw/advs.conf",
"advsClassPath": "cn.academy.advancements.ACAdvancements",
"additionalImports": {
"all": [
"cn.academy.block.block.*",
"cn.academy.item.*",
"net.minecraftforge.fml.common.Optional"
],
"item": [
],
"block": [
"cn.academy.block.block.BlockNode.NodeType",
"cn.academy.ability.develop.DeveloperType",
"cn.lambdalib2.multiblock.*"
]
}
}