-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit aa97c15
Showing
100 changed files
with
4,084 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
buildscript { | ||
repositories { | ||
maven { url = 'https://maven.minecraftforge.net/' } | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'net.minecraftforge.gradle:ForgeGradle:3.+' | ||
} | ||
} | ||
|
||
apply plugin: 'net.minecraftforge.gradle' | ||
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. | ||
apply plugin: 'eclipse' | ||
apply plugin: 'maven-publish' | ||
|
||
version = "${version}" | ||
group = 'atomicstryker.battletowers' | ||
archivesBaseName = 'battletowersfix' | ||
|
||
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. | ||
|
||
minecraft { | ||
mappings channel: 'snapshot', version: '20171103-1.12' | ||
runs { | ||
client { | ||
workingDirectory project.file('run') | ||
|
||
// Recommended logging data for a userdev environment | ||
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' | ||
|
||
// Recommended logging level for the console | ||
property 'forge.logging.console.level', 'debug' | ||
|
||
args '--username', 'wdcftgg' | ||
} | ||
|
||
server { | ||
|
||
// Recommended logging data for a userdev environment | ||
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' | ||
|
||
// Recommended logging level for the console | ||
property 'forge.logging.console.level', 'debug' | ||
} | ||
} | ||
} | ||
|
||
|
||
|
||
repositories { | ||
|
||
} | ||
|
||
dependencies { | ||
|
||
minecraft 'net.minecraftforge:forge:1.12.2-14.23.5.2860' | ||
|
||
} | ||
|
||
// Example for how to get properties into the manifest for reading by the runtime.. | ||
jar { | ||
manifest { | ||
attributes([ | ||
"Specification-Title": "battletowers", | ||
"Specification-Vendor": "wdcftgg", | ||
"Specification-Version": "1", // We are version 1 of ourselves | ||
"Implementation-Title": project.name, | ||
"Implementation-Version": "${version}", | ||
"Implementation-Vendor" :"wdcftgg", | ||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") | ||
]) | ||
} | ||
} | ||
|
||
processResources{ | ||
// this will ensure that this task is redone when the versions change. | ||
inputs.property "version", "${version}" | ||
inputs.property "mcversion", "1.12.2" | ||
|
||
// replace stuff in mcmod.info, nothing else | ||
from(sourceSets.main.resources.srcDirs) { | ||
include 'mcmod.info' | ||
|
||
// replace version and mcversion | ||
expand 'version':"${version}", 'mcversion':"1.12.2" | ||
} | ||
|
||
// copy everything else, thats not the mcmod.info | ||
from(sourceSets.main.resources.srcDirs) { | ||
exclude 'mcmod.info' | ||
} | ||
} | ||
|
||
// Example configuration to allow publishing using the maven-publish task | ||
// This is the preferred method to reobfuscate your jar file | ||
jar.finalizedBy('reobfJar') | ||
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing | ||
//publish.dependsOn('reobfJar') | ||
|
||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
artifact jar | ||
} | ||
} | ||
repositories { | ||
maven { | ||
url "file:///${project.projectDir}/mcmodsrepo" | ||
} | ||
} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
output.resourcesDir = output.classesDir | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
entity.BattleTowers.Battletower Golem.name=Kampfturm-Golem | ||
entity.Battletower Golem.name=Kampfturm-Golem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
entity.BattleTowers.Battletower Golem.name=Battletower Golem | ||
entity.Battletower Golem.name=Battletower Golem | ||
Battletowers.guardian=A Battletower's Guardian has fallen! Without it's power, the Tower will collapse... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
entity.BattleTowers.Battletower Golem.name=Голем боевой башни | ||
entity.Battletower Golem.name=Голем боевой башни |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
entity.BattleTowers.Battletower Golem.name=Savaş Kulesi Golemi | ||
entity.Battletower Golem.name=Savaş Kulesi Golemi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 1, | ||
"description": "Forge Mod Defaults" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"golem": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golem" | ||
] | ||
}, | ||
"golemawaken": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golemawaken" | ||
] | ||
}, | ||
"golemcharge": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golemcharge1", | ||
"battletowers:golemcharge2" | ||
] | ||
}, | ||
"golemdeath": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golemdeath" | ||
] | ||
}, | ||
"golemhurt": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golemhurt1", | ||
"battletowers:golemhurt2" | ||
] | ||
}, | ||
"golemspecial": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:golemspecial1", | ||
"battletowers:golemspecial2" | ||
] | ||
}, | ||
"towerbreakstart": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:towerbreakstart" | ||
] | ||
}, | ||
"towercrumble": { | ||
"category": "hostile", | ||
"sounds": [ | ||
"battletowers:towercrumble" | ||
] | ||
} | ||
} |
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 not shown.
Binary file added
BIN
+462 KB
build/classes/java/main/assets/battletowers/sounds/towerbreakstart.ogg
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.36 KB
build/classes/java/main/assets/battletowers/textures/model/golemdormant.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.72 KB
build/classes/java/main/atomicstryker/battletowers/client/AS_RenderFireball.class
Binary file not shown.
Binary file added
BIN
+2.26 KB
build/classes/java/main/atomicstryker/battletowers/client/AS_RenderGolem.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
build/classes/java/main/atomicstryker/battletowers/client/ClientProxy$1.class
Binary file not shown.
Binary file added
BIN
+1.35 KB
build/classes/java/main/atomicstryker/battletowers/client/ClientProxy$2.class
Binary file not shown.
Binary file added
BIN
+1.31 KB
build/classes/java/main/atomicstryker/battletowers/client/ClientProxy.class
Binary file not shown.
Binary file added
BIN
+5.67 KB
build/classes/java/main/atomicstryker/battletowers/client/ClientTickHandler.class
Binary file not shown.
Binary file added
BIN
+1.87 KB
...java/main/atomicstryker/battletowers/common/AS_BattleTowersCore$RegistrationHandler.class
Binary file not shown.
Binary file added
BIN
+13.2 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_BattleTowersCore.class
Binary file not shown.
Binary file added
BIN
+13.1 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_EntityGolem.class
Binary file not shown.
Binary file added
BIN
+5.93 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_EntityGolemFireball.class
Binary file not shown.
Binary file added
BIN
+5.52 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_TowerDestroyer.class
Binary file not shown.
Binary file added
BIN
+3.83 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_WorldGenTower$TowerTypes.class
Binary file not shown.
Binary file added
BIN
+14.8 KB
build/classes/java/main/atomicstryker/battletowers/common/AS_WorldGenTower.class
Binary file not shown.
Binary file added
BIN
+460 Bytes
build/classes/java/main/atomicstryker/battletowers/common/CommandBattleTowers.class
Binary file not shown.
Binary file added
BIN
+1.8 KB
build/classes/java/main/atomicstryker/battletowers/common/CommandDeleteAllBattleTowers.class
Binary file not shown.
Binary file added
BIN
+3.47 KB
build/classes/java/main/atomicstryker/battletowers/common/CommandDeleteBattleTower.class
Binary file not shown.
Binary file added
BIN
+1.81 KB
...lasses/java/main/atomicstryker/battletowers/common/CommandRegenerateAllBattleTowers.class
Binary file not shown.
Binary file added
BIN
+3.66 KB
build/classes/java/main/atomicstryker/battletowers/common/CommandRegenerateBattleTower.class
Binary file not shown.
Binary file added
BIN
+2.56 KB
build/classes/java/main/atomicstryker/battletowers/common/CommandSpawnBattleTower.class
Binary file not shown.
Binary file added
BIN
+457 Bytes
build/classes/java/main/atomicstryker/battletowers/common/CommonProxy.class
Binary file not shown.
Binary file added
BIN
+4.47 KB
build/classes/java/main/atomicstryker/battletowers/common/DungeonTweaksCompat.class
Binary file not shown.
Binary file added
BIN
+1.69 KB
build/classes/java/main/atomicstryker/battletowers/common/ServerTickHandler.class
Binary file not shown.
Binary file added
BIN
+6.27 KB
build/classes/java/main/atomicstryker/battletowers/common/TowerStageItemManager.class
Binary file not shown.
Binary file added
BIN
+261 Bytes
build/classes/java/main/atomicstryker/battletowers/common/WorldGenHandler$1.class
Binary file not shown.
Binary file added
BIN
+2.6 KB
...d/classes/java/main/atomicstryker/battletowers/common/WorldGenHandler$TowerPosition.class
Binary file not shown.
Binary file added
BIN
+1.36 KB
build/classes/java/main/atomicstryker/battletowers/common/WorldGenHandler$WorldHandle.class
Binary file not shown.
Binary file added
BIN
+17.4 KB
build/classes/java/main/atomicstryker/battletowers/common/WorldGenHandler.class
Binary file not shown.
Binary file added
BIN
+3.49 KB
build/classes/java/main/atomicstryker/battletowers/common/network/ChestAttackedPacket.class
Binary file not shown.
Binary file added
BIN
+1.14 KB
build/classes/java/main/atomicstryker/battletowers/common/network/LoginPacket.class
Binary file not shown.
Binary file added
BIN
+2.64 KB
...sses/java/main/atomicstryker/battletowers/common/network/NetworkHelper$ChannelCodec.class
Binary file not shown.
Binary file added
BIN
+1.58 KB
...es/java/main/atomicstryker/battletowers/common/network/NetworkHelper$ChannelHandler.class
Binary file not shown.
Binary file added
BIN
+371 Bytes
...d/classes/java/main/atomicstryker/battletowers/common/network/NetworkHelper$IPacket.class
Binary file not shown.
Binary file added
BIN
+5.7 KB
build/classes/java/main/atomicstryker/battletowers/common/network/NetworkHelper.class
Binary file not shown.
Oops, something went wrong.