Skip to content

Commit 09a8829

Browse files
authored
Added chlorophyte material-set textures (#197)
1 parent d6078e7 commit 09a8829

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+197
-2
lines changed

src/main/java/com/ghostipedia/cosmiccore/common/data/materials/CosmicMaterialSet.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public class CosmicMaterialSet {
1616
public static final MaterialIconSet NEVRAMITE = new MaterialIconSet("nevramite", DULL);
1717
public static final MaterialIconSet VOIDSPARK = new MaterialIconSet("voidspark", DULL);
1818
public static final MaterialIconSet SOL = new MaterialIconSet("sol", DULL);
19+
public static final MaterialIconSet CHLOROPHYTE = new MaterialIconSet("chlorophyte", SHINY);
1920
public static final MaterialIconSet CRYSTAL = new MaterialIconSet("crystal", DULL);
2021
public static final MaterialIconSet MAGIC = new MaterialIconSet("magic", DULL);
2122

src/main/java/com/ghostipedia/cosmiccore/common/data/materials/CosmicMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ public static void register() {
232232

233233
Chlorophyte = new Material.Builder(CosmicCore.id("chlorophyte"))
234234
.ingot()
235-
.liquid(new FluidBuilder().temperature(1340))
236-
.color(0x3A8F5B).secondaryColor(0x6BB78A).iconSet(MaterialIconSet.METALLIC)
235+
.liquid(new FluidBuilder().temperature(1340).customStill())
236+
.iconSet(CosmicMaterialSet.CHLOROPHYTE)
237237
.flags(GENERATE_BOLT_SCREW, GENERATE_ROUND, GENERATE_GEAR, GENERATE_SMALL_GEAR, GENERATE_RING,
238238
GENERATE_FRAME, GENERATE_SPRING, GENERATE_SPRING_SMALL, GENERATE_FINE_WIRE, GENERATE_DENSE)
239239
.blastTemp(4500, BlastProperty.GasTier.HIGH, GTValues.VA[GTValues.EV], 1200)
8.81 KB
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"animation": {
3+
"interpolate": false,
4+
"frametime": 2
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "gtceu:block/cube/tinted/all_0",
3+
"textures": {
4+
"all": "gtceu:block/material_sets/chlorophyte/block"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "gtceu:block/cube/tinted/all_0",
3+
"textures": {
4+
"all": "gtceu:block/material_sets/chlorophyte/frame_gt"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "gtceu:item/material_sets/chlorophyte/alve_foil_insulator"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "gtceu:item/material_sets/chlorophyte/bolt"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "gtceu:item/material_sets/chlorophyte/dust"
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "gtceu:item/material_sets/chlorophyte/dust_small"
5+
}
6+
}

0 commit comments

Comments
 (0)