Skip to content

Commit

Permalink
0.4.1pre
Browse files Browse the repository at this point in the history
  • Loading branch information
Layaot committed Sep 29, 2022
1 parent 608ad2d commit c322c8c
Show file tree
Hide file tree
Showing 124 changed files with 73,111 additions and 7,819 deletions.
Binary file modified .gradle/4.10.3/fileContent/annotation-processors.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/fileContent/fileContent.lock
Binary file not shown.
Binary file modified .gradle/4.10.3/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/4.10.3/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified .gradle/4.10.3/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.10.3/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
10 changes: 10 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
apply plugin: "net.minecraftforge.gradle.forge"

group = 'com.groupzts'
version = '0.4.0'
version = '0.4.1'
archivesBaseName = 'netheriteroad'

minecraft {
Expand All @@ -28,13 +28,25 @@ minecraft {
repositories {
maven {
url "https://cursemaven.com"
}
maven {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "https://modmaven.dev"
}
mavenCentral()
}

dependencies {
deobfCompile "curse.maven:mantle-${mantle_build}"
deobfCompile "curse.maven:tconstruct-${tic_build}"
implementation "mezz.jei:jei_${mc_version}:${jei_version}:api"
implementation "mezz.jei:jei_${mc_version}:${jei_version}"
}

processResources {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added build/libs/netheriteroad-0.4.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parent": "minecraft:nether/root",
"display": {
"icon": {
"item": "netheriteroad:ancient_debris"
},
"title": {
"translate": "advancements.nether.obtain_ancient_debris.title"
},
"description": {
"translate": "advancements.nether.obtain_ancient_debris.description"
},
"frame": "task",
"show_toast": true,
"announce_to_chat": true,
"hidden": false
},
"criteria": {
"ancient_debris": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "netheriteroad:ancient_debris"
}
]
}
}
},
"requirements": [
[
"ancient_debris"
]
]
}
4 changes: 3 additions & 1 deletion build/resources/main/assets/netheriteroad/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ netheriteroad.sound.step_netherite_block= Footstep
material.netherite.name=Netherite
modifier.superfortified.name=Super Fortified
fluid.molten_netherite.name=Molten Netherite Alloy
fluid.molten_ancient.name=Molten Ancient Debris
fluid.molten_ancient.name=Molten Ancient Debris
advancements.nether.obtain_ancient_debris.title=Hidden in the Depths
advancements.nether.obtain_ancient_debris.description=Obtain Ancient Debris
4 changes: 3 additions & 1 deletion build/resources/main/assets/netheriteroad/lang/zh_cn.lang
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ netheriteroad.sound.step_netherite_block=脚步声
material.netherite.name=下界合金
modifier.superfortified.name=超级强化
fluid.molten_netherite.name=熔融下界合金
fluid.molten_ancient.name=熔融远古残骸
fluid.molten_ancient.name=熔融远古残骸
advancements.nether.obtain_ancient_debris.title=深藏不露
advancements.nether.obtain_ancient_debris.description=获得远古残骸
2 changes: 1 addition & 1 deletion build/resources/main/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "netheriteroad",
"name": "Netherite Road",
"description": "A Mod about Nether",
"version": "0.4.0",
"version": "0.4.1",
"mcversion": "1.12.2",
"url": "",
"updateUrl": "",
Expand Down
Loading

0 comments on commit c322c8c

Please sign in to comment.