Skip to content

Commit

Permalink
1.20.1 Fabric
Browse files Browse the repository at this point in the history
1.3
Adds Chest support for the following mods
AdAstra
BeachParty (Lets Do)
BetterArcheology
DeeperAndDarker
MineCells
SnifferPlus (Helions Sniffer)
TechReborn
Vinery (Lets Do)
  • Loading branch information
xanthian committed Oct 27, 2023
1 parent 2c896be commit 8306227
Show file tree
Hide file tree
Showing 102 changed files with 1,566 additions and 35 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ org.gradle.parallel=true
# Fabric Properties
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10
loader_version=0.14.22
loader_version=0.14.24

#Fabric api
fabric_version=0.89.3+1.20.1
fabric_version=0.90.4+1.20.1

# Mod Properties
mod_version = 1.2
mod_version = 1.3
maven_group = xanthian.variantchests
archives_base_name = variantchests

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/aa_glacian_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/ba_rotten_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/dad_echo_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/ldbp_palm_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/ldv_cherry_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/mc_putrid_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/sp_stone_pine_chest"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "variantchests:block/tr_rubber_chest"
}
}
}
16 changes: 16 additions & 0 deletions src/main/generated/assets/variantchests/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,43 @@
{
"block.minecraft.chest": "Oak Chest",
"block.variantchests.aa_glacian_chest": "Glacian Chest",
"block.variantchests.acacia_chest": "Acacia Chest",
"block.variantchests.ba_rotten_chest": "Rotten Chest",
"block.variantchests.bamboo_chest": "Bamboo Chest",
"block.variantchests.birch_chest": "Birch Chest",
"block.variantchests.cherry_chest": "Cherry Chest",
"block.variantchests.crimson_chest": "Crimson Chest",
"block.variantchests.dad_echo_chest": "Echo Chest",
"block.variantchests.dark_oak_chest": "Dark Oak Chest",
"block.variantchests.jungle_chest": "Jungle Chest",
"block.variantchests.ldbp_palm_chest": "Palm Chest",
"block.variantchests.ldv_cherry_chest": "Cherry Chest",
"block.variantchests.mangrove_chest": "Mangrove Chest",
"block.variantchests.mc_putrid_chest": "Putrid Chest",
"block.variantchests.oak_chest": "Oak Chest",
"block.variantchests.sp_stone_pine_chest": "Stone Pine Chest",
"block.variantchests.spruce_chest": "Spruce Chest",
"block.variantchests.tr_rubber_chest": "Rubber Chest",
"block.variantchests.warped_chest": "Warped Chest",
"container.chest": "Oak Chest",
"container.variantchests.aa_glacian_chest": "Glacian Chest",
"container.variantchests.acacia_chest": "Acacia Chest",
"container.variantchests.ba_rotten_chest": "Rotten Chest",
"container.variantchests.bamboo_chest": "Bamboo Chest",
"container.variantchests.birch_chest": "Birch Chest",
"container.variantchests.cherry_chest": "Cherry Chest",
"container.variantchests.crimson_chest": "Crimson Chest",
"container.variantchests.dad_echo_chest": "Echo Chest",
"container.variantchests.dark_oak_chest": "Dark Oak Chest",
"container.variantchests.jungle_chest": "Jungle Chest",
"container.variantchests.ldbp_palm_chest": "Palm Chest",
"container.variantchests.ldv_cherry_chest": "Cherry Chest",
"container.variantchests.mangrove_chest": "Mangrove Chest",
"container.variantchests.mc_putrid_chest": "Putrid Chest",
"container.variantchests.oak_chest": "Oak Chest",
"container.variantchests.sp_stone_pine_chest": "Stone Pine Chest",
"container.variantchests.spruce_chest": "Spruce Chest",
"container.variantchests.tr_rubber_chest": "Rubber Chest",
"container.variantchests.warped_chest": "Warped Chest",
"variantchests.itemgroup": "Variant Chests"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "ad_astra:block/glacian_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "betterarcheology:block/rotten_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "deeperdarker:block/echo_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "beachparty:block/palm_planks0"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "vinery:block/cherry_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "minecells:block/putrid_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "snifferplus:block/stone_pine_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textures": {
"particle": "techreborn:block/rubber_planks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/aa_glacian_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/ba_rotten_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/dad_echo_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/ldbp_palm_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/ldv_cherry_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/mc_putrid_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/sp_stone_pine_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "variantchests:block/variantchest",
"textures": {
"chest": "variantchests:chest/tr_rubber_chest"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"ad_astra"
]
}
],
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_name",
"source": "block_entity"
}
],
"name": "variantchests:aa_glacian_chest"
}
],
"rolls": 1.0
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"betterarcheology"
]
}
],
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_name",
"source": "block_entity"
}
],
"name": "variantchests:ba_rotten_chest"
}
],
"rolls": 1.0
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"deeperdarker"
]
}
],
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:copy_name",
"source": "block_entity"
}
],
"name": "variantchests:dad_echo_chest"
}
],
"rolls": 1.0
}
]
}
Loading

0 comments on commit 8306227

Please sign in to comment.