1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
return {
dark = {
color = {86,16,42};
infusion = "default:obsidian_shard";
};
shimmering = {
color = {224,255,155};
infusion = "default:mese_crystal_fragment";
};
silent = {
color = {249,193,42};
infusion = "sorcery:extract_cotton";
};
verdant = {
infusion = "default:sapling";
color = {78,222,113};
};
blazing = {
infusion = "sorcery:oil_flame";
color = {229,32,53};
};
}
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
return {
dark = {
color = {86,16,42};
infusion = "sorcery:liquid_sap_pine_bottle";
};
shimmering = {
color = {224,255,155};
infusion = "default:mese_crystal_fragment";
};
silent = {
color = {249,193,42};
infusion = "sorcery:extract_cotton";
};
verdant = {
infusion = "sorcery:liquid_sap_apple_bottle";
color = {78,222,113};
};
blazing = {
infusion = "sorcery:oil_flame";
color = {229,32,53};
};
}
|