JUICE JUICE

This commit is contained in:
2026-02-22 17:42:19 +01:00
parent 032111ce6d
commit 959fb9bf9a
13 changed files with 32 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10 yarn_mappings=1.20.1+build.10
loader_version=0.18.3 loader_version=0.18.3
# Mod Properties # Mod Properties
mod_version=26.2.22.1 mod_version=26.2.22.2
maven_group=dev.tggamesyt maven_group=dev.tggamesyt
archives_base_name=szar archives_base_name=szar
# Dependencies # Dependencies

View File

@@ -1,3 +1,3 @@
// 1.20.1 2026-02-13T13:11:58.9342791 szar/World Gen // 1.20.1 2026-02-22T17:34:09.3606501 szar/World Gen
1d26b5da3b0a2ea6b23d456d1f0b82455a788ca1 data\szar\worldgen\configured_feature\uranium_ore.json 1d26b5da3b0a2ea6b23d456d1f0b82455a788ca1 data\szar\worldgen\configured_feature\uranium_ore.json
32864170bdb41310f9ee5d06f5720dfdb3badb6d data\szar\worldgen\placed_feature\uranium_ore_placed.json 32864170bdb41310f9ee5d06f5720dfdb3badb6d data\szar\worldgen\placed_feature\uranium_ore_placed.json

View File

@@ -1,2 +1,2 @@
// 1.20.1 2026-02-13T13:11:58.9352765 szar/Tags for minecraft:point_of_interest_type // 1.20.1 2026-02-22T17:34:09.3606501 szar/Tags for minecraft:point_of_interest_type
eba137b51c50a7143a3668876f41adaa1447b1d1 data\minecraft\tags\point_of_interest_type\acquirable_job_site.json eba137b51c50a7143a3668876f41adaa1447b1d1 data\minecraft\tags\point_of_interest_type\acquirable_job_site.json

View File

@@ -1,2 +1,2 @@
// 1.20.1 2026-02-13T13:11:58.9332826 szar/Tags for minecraft:item // 1.20.1 2026-02-22T17:34:09.3596499 szar/Tags for minecraft:item
044a7669228ee893e38875357ee12c83cdad7ec6 data\minecraft\tags\items\music_discs.json 15754f2ee2c60320aae8a09679ed422fea29a705 data\minecraft\tags\items\music_discs.json

View File

@@ -2,6 +2,7 @@
"replace": false, "replace": false,
"values": [ "values": [
"szar:pop_tart", "szar:pop_tart",
"szar:baiter" "szar:baiter",
"szar:efn"
] ]
} }

View File

@@ -25,5 +25,6 @@ public class ModItemTagProvider extends FabricTagProvider.ItemTagProvider {
protected void configure(RegistryWrapper.WrapperLookup lookup) { protected void configure(RegistryWrapper.WrapperLookup lookup) {
getOrCreateTagBuilder(ItemTags.MUSIC_DISCS).add(Szar.POPTART); getOrCreateTagBuilder(ItemTags.MUSIC_DISCS).add(Szar.POPTART);
getOrCreateTagBuilder(ItemTags.MUSIC_DISCS).add(Szar.BAITER_DISK); getOrCreateTagBuilder(ItemTags.MUSIC_DISCS).add(Szar.BAITER_DISK);
getOrCreateTagBuilder(ItemTags.MUSIC_DISCS).add(Szar.EFN_DISK);
} }
} }

View File

@@ -279,6 +279,7 @@ public class Szar implements ModInitializer {
entries.add(Szar.ATOM); entries.add(Szar.ATOM);
entries.add(Szar.BAITER_DISK); entries.add(Szar.BAITER_DISK);
entries.add(Szar.MERL_SPAWNEGG); entries.add(Szar.MERL_SPAWNEGG);
entries.add(Szar.EFN_DISK);
}) })
.build() .build()
); );
@@ -866,6 +867,13 @@ public class Szar implements ModInitializer {
new Identifier(MOD_ID, "baiter"), new Identifier(MOD_ID, "baiter"),
new MusicDiscItem(12, BAITER, new Item.Settings().maxCount(1).rarity(Rarity.RARE), 172) new MusicDiscItem(12, BAITER, new Item.Settings().maxCount(1).rarity(Rarity.RARE), 172)
); );
public static final SoundEvent EFN =
SoundEvent.of(new Identifier(MOD_ID, "efn"));
public static final Item EFN_DISK = Registry.register(
Registries.ITEM,
new Identifier(MOD_ID, "efn"),
new MusicDiscItem(11, EFN, new Item.Settings().maxCount(1).rarity(Rarity.RARE), 133)
);
public static final Item ATOM_DETONATOR = Registry.register( public static final Item ATOM_DETONATOR = Registry.register(
Registries.ITEM, Registries.ITEM,
new Identifier(MOD_ID, "detonator"), new Identifier(MOD_ID, "detonator"),

View File

@@ -65,6 +65,8 @@
"effect.szar.radiation": "Radiation", "effect.szar.radiation": "Radiation",
"item.szar.baiter": "Music Disc", "item.szar.baiter": "Music Disc",
"item.szar.baiter.desc": "HaVexy - Hyperabaiter Disstrack", "item.szar.baiter.desc": "HaVexy - Hyperabaiter Disstrack",
"item.szar.efn": "Music Disc",
"item.szar.efn.desc": "Daciva - EFN",
"death.attack.radiation": "%1$s radiated away", "death.attack.radiation": "%1$s radiated away",
"death.attack.radiation.player": "%1$s was lethally irradiated by %2$s", "death.attack.radiation.player": "%1$s was lethally irradiated by %2$s",
"entity.szar.merl": "Merl", "entity.szar.merl": "Merl",

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "szar:item/efn"
}
}

View File

@@ -51,6 +51,14 @@
} }
] ]
}, },
"efn": {
"sounds": [
{
"name": "szar:efn",
"stream": true
}
]
},
"merl": { "merl": {
"sounds": [ "sounds": [
{ {

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 726 B