Initial commit

This commit is contained in:
2024-07-25 00:49:50 +03:00
commit 73aabb1a43
38 changed files with 1660 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
item.short_radar.name=Short Distance Radar
item.long_radar.name=Long Distance Radar
item.radar_antenna.name=Radar Antenna
item.radar_screen.name=Radar Screen

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "lumiscope:items/long_radar"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "lumiscope:items/radar_antenna"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "lumiscope:items/radar_screen"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "lumiscope:items/short_radar"
}
}

View File

@@ -0,0 +1,29 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"SES",
"ONO"
],
"key": {
"E": {
"item": "minecraft:ender_pearl"
},
"A": {
"item": "lumiscope:radar_antenna"
},
"S": {
"item": "lumiscope:short_radar"
},
"O": {
"item": "minecraft:obsidian"
},
"N": {
"item": "minecraft:nether_star"
}
},
"result": {
"item": "lumiscope:long_radar",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"RIR",
"RIR",
"RIR"
],
"key": {
"R": {
"item": "minecraft:redstone"
},
"I": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "lumiscope:radar_antenna",
"count": 1
}
}

View File

@@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"GGG",
"RIR",
"GGG"
],
"key": {
"G": {
"item": "minecraft:glass_pane"
},
"R": {
"item": "minecraft:redstone"
},
"I": {
"item": "minecraft:item_frame"
}
},
"result": {
"item": "lumiscope:radar_screen",
"count": 1
}
}

View File

@@ -0,0 +1,32 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"EAE",
"RSR",
"OIO"
],
"key": {
"E": {
"item": "minecraft:ender_pearl"
},
"A": {
"item": "lumiscope:radar_antenna"
},
"R": {
"item": "minecraft:redstone"
},
"S": {
"item": "lumiscope:radar_screen"
},
"O": {
"item": "minecraft:obsidian"
},
"I": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "lumiscope:short_radar",
"count": 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

View File

@@ -0,0 +1,16 @@
[
{
"modid": "lumiscope",
"name": "Lumiscope",
"description": "Balanced, long distance radar mod.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
"authorList": ["Lumijiez"],
"credits": "Me :P",
"logoFile": "",
"screenshots": [],
"dependencies": []
}
]

View File

@@ -0,0 +1,7 @@
{
"pack": {
"description": "Lumiscope resources",
"pack_format": 3,
"_comment": "A pack_format of 3 should be used starting with Minecraft 1.11. All resources, including language files, should be lowercase (eg: en_us.lang). A pack_format of 2 will load your mod resources with LegacyV2Adapter, which requires language files to have uppercase letters (eg: en_US.lang)."
}
}