Skip to content

Commit

Permalink
Merge pull request #348 from MCTian-mi/anthracite-and-lignite
Browse files Browse the repository at this point in the history
Add anthracite & lignite deposits
  • Loading branch information
trainvoi authored Dec 6, 2024
2 parents f274268 + db2b838 commit e5e6c78
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ public BlockResource1() {
}

public enum ResourceBlockType implements IStringSerializable {
NATIVE_COPPER("native_copper", 1);
NATIVE_COPPER("native_copper", 1),
ANTHRACITE("anthracite", 0),
LIGNITE("lignite", 0);

private final String name;
private final int harvestLevel;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/main/resources/assets/susy/blockstates/resource_block_1.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@
"textures" : {
"all" : "gregtech:blocks/resource/native_copper"
}
},
"variant=anthracite" : {
"model" : "minecraft:cube_all",
"textures" : {
"all" : "gregtech:blocks/resource/anthracite"
}
},
"variant=lignite" : {
"model" : "minecraft:cube_all",
"textures" : {
"all" : "gregtech:blocks/resource/lignite"
}
}
}
}
2 changes: 2 additions & 0 deletions src/main/resources/assets/susy/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ tile.resource_block.potash.name=Potash Deposit
tile.resource_block.sulfur.name=Sulfur Deposit
tile.resource_block.coal.name=Coal Deposit
tile.resource_block_1.native_copper.name=Native Copper Deposit
tile.resource_block_1.anthracite.name=Anthracite Deposit
tile.resource_block_1.lignite.name=Lignite Deposit


tile.multiblock_tank.clarifier.name=Clarifier Vat
Expand Down

0 comments on commit e5e6c78

Please sign in to comment.