Skip to content

Commit

Permalink
experimental gem lanterns & auto lang addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Uraneptus committed Sep 5, 2024
1 parent 954e564 commit 21cdf6f
Show file tree
Hide file tree
Showing 43 changed files with 352 additions and 107 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/amethyst_lantern"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/diamond_lantern"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/emerald_lantern"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/jade_lantern"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/lapis_lantern"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "sullysmod:block/quartz_lantern"
}
}
}
8 changes: 6 additions & 2 deletions src/generated/resources/assets/sullysmod/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,15 @@
"block.sullysmod.amber_bricks": "Amber Bricks",
"block.sullysmod.amber_lantern": "Amber Lantern",
"block.sullysmod.amber_pillar": "Amber Pillar",
"block.sullysmod.amethyst_lantern": "Amethyst Lantern",
"block.sullysmod.chiseled_amber": "Chiseled Amber",
"block.sullysmod.chiseled_jade": "Chiseled Jade",
"block.sullysmod.copper_button": "Copper Button",
"block.sullysmod.cracked_ancient_skull": "Cracked Ancient Skull",
"block.sullysmod.crested_ancient_skull": "Crested Ancient Skull",
"block.sullysmod.deepslate_jade_ore": "Deepslate Jade Ore",
"block.sullysmod.diamond_lantern": "Diamond Lantern",
"block.sullysmod.emerald_lantern": "Emerald Lantern",
"block.sullysmod.exposed_copper_button": "Exposed Copper Button",
"block.sullysmod.flatbilled_ancient_skull": "Flatbilled Ancient Skull",
"block.sullysmod.gigantic_ancient_skull": "Gigantic Ancient Skull",
Expand All @@ -53,25 +56,26 @@
"block.sullysmod.jade_brick_wall": "Jade Brick Wall",
"block.sullysmod.jade_bricks": "Jade Bricks",
"block.sullysmod.jade_flinger_totem": "Jade Flinger Totem",
"block.sullysmod.jade_lantern": "Jade Lantern",
"block.sullysmod.jade_ore": "Jade Ore",
"block.sullysmod.jade_pillar": "Jade Pillar",
"block.sullysmod.jade_totem": "Jade Totem",
"block.sullysmod.lapis_lantern": "Lapis Lantern",
"block.sullysmod.long_ancient_skull": "Long Ancient Skull",
"block.sullysmod.oxidized_copper_button": "Oxidized Copper Button",
"block.sullysmod.petrified_button": "Petrified Button",
"block.sullysmod.petrified_door": "Petrified Door",
"block.sullysmod.petrified_fence": "Petrified Fence",
"block.sullysmod.petrified_fence_gate": "Petrified Fence Gate",
"block.sullysmod.petrified_hanging_sign": "Petrified Hanging Sign",
"block.sullysmod.petrified_log": "Petrified Log",
"block.sullysmod.petrified_planks": "Petrified Planks",
"block.sullysmod.petrified_pressure_plate": "Petrified Pressure Plate",
"block.sullysmod.petrified_sapling": "Petrified Sapling",
"block.sullysmod.petrified_sign": "Petrified Sign",
"block.sullysmod.petrified_slab": "Petrified Slab",
"block.sullysmod.petrified_stairs": "Petrified Stairs",
"block.sullysmod.petrified_trapdoor": "Petrified Trapdoor",
"block.sullysmod.petrified_wood": "Petrified Wood",
"block.sullysmod.quartz_lantern": "Quartz Lantern",
"block.sullysmod.ribbed_ancient_skull": "Ribbed Ancient Skull",
"block.sullysmod.rough_amber": "Rough Amber",
"block.sullysmod.rough_jade_block": "Block of Rough Jade",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/amethyst_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/diamond_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/emerald_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/jade_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/lapis_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "sullysmod:block/quartz_lantern"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/amethyst_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/diamond_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/emerald_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/jade_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/lapis_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"parent": "sullysmod:block/quartz_lantern"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"sullysmod:jade_pillar",
"sullysmod:jade_brick_stairs",
"sullysmod:jade_brick_slab",
"sullysmod:jade_lantern",
"sullysmod:rough_jade_brick_wall",
"sullysmod:jade_brick_wall",
"sullysmod:rough_jade_brick_stairs",
Expand All @@ -37,6 +38,11 @@
"sullysmod:amber_brick_slab",
"sullysmod:amber_brick_stairs",
"sullysmod:amber_brick_wall",
"sullysmod:item_stand"
"sullysmod:item_stand",
"sullysmod:diamond_lantern",
"sullysmod:emerald_lantern",
"sullysmod:lapis_lantern",
"sullysmod:amethyst_lantern",
"sullysmod:quartz_lantern"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"sullysmod:rough_jade_brick_stairs",
"sullysmod:rough_jade_brick_slab",
"sullysmod:rough_jade_brick_wall",
"sullysmod:jade_brick_wall"
"sullysmod:jade_brick_wall",
"sullysmod:diamond_lantern",
"sullysmod:emerald_lantern",
"sullysmod:lapis_lantern"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:amethyst_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/amethyst_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:diamond_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/diamond_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:emerald_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/emerald_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:jade_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/jade_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:lapis_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/lapis_lantern"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "sullysmod:quartz_lantern"
}
],
"rolls": 1.0
}
],
"random_sequence": "sullysmod:blocks/quartz_lantern"
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"minecraft:soul_campfire",
"minecraft:furnace",
"minecraft:blast_furnace",
"minecraft:smoker",
"minecraft:magma_block",
"minecraft:ochre_froglight",
"minecraft:pearlescent_froglight",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"sullysmod:jade_brick_stairs",
"sullysmod:jade_brick_slab",
"sullysmod:jade_flinger_totem",
"sullysmod:jade_brick_wall"
"sullysmod:jade_brick_wall",
"sullysmod:jade_lantern"
]
}
Loading

0 comments on commit 21cdf6f

Please sign in to comment.