Skip to content

Commit 1f7f2af

Browse files
committed
HTTYMD Project source added to github
Changelog: - Better Night Fury Anmiations - Optimized Entities, Items, and Events - Fixed Config System - Attempt to support older Forge versions (that doesn't include FishingHooks.java) - Added Stats (not yet used) - Decreases Features in Dragons - Fixed partially broken recpies - Added Gronkle Iron Hoe - mcmod.info reports as version 0.9.0 - Updated logo (artifacting still an issue)
1 parent 3a56174 commit 1f7f2af

File tree

185 files changed

+8785
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+8785
-2
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.gradle/
2+
.idea/
3+
.settings/
4+
.project
5+
.classpath
6+
bin/
7+
libs/
8+
classes/
9+
minecraft/
10+
HTTYMD.iml

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## Contributing
2+
To contribute you simply have to build the workspace
3+
4+
To build this workspace:
5+
1. Fork this repository
6+
* run `gradlew setupDecompWorkspace`
7+
* Prepare your preferred IDE
8+
* For Eclipse, you can either install the Gradle plugin and point to build.gradle or you can run `gradlew.bat setupDecompWorkspace eclipse` and import this folder
9+
* TODO: give basic Intellij instructions
10+
* Start developing

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1-
##Repo Purpose
2-
The current purpose of this repo is for public issue and milestone tracking, and will later, be the location of the mod when it becomes a more open-sourced mod
1+
![](resources/logo.gif?raw=true)
2+
===============
3+
The Minecraft Mod that adds the (movie) HTTYD universe to Minecraft (and more)
34

5+
#### Important
6+
This is the 1.7.10 branch
7+
8+
### Mod Users
9+
10+
**Search [here][1] _before_** reporting issues to the [issue tracker][1]
11+
12+
### Contributers
13+
14+
Please read [this](CONTRIBUTING.md)
15+
16+
### Addon Developers
17+
18+
If you want to contribute to the project, see [Contributers](#contributers).
19+
20+
To create an addon, download the compiled jar and add as a library to your workspace
21+
22+
[1]: https://github.com/HTTYMD-Team/HTTYMD-Mod/issues

build.gradle

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
maven {
5+
name = "forge"
6+
url = "http://files.minecraftforge.net/maven"
7+
}
8+
maven {
9+
name = "sonatype"
10+
url = "https://oss.sonatype.org/content/repositories/snapshots/"
11+
}
12+
}
13+
dependencies {
14+
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
15+
}
16+
}
17+
18+
apply plugin: 'idea'
19+
idea {
20+
module {
21+
inheritOutputDirs = true
22+
}
23+
}
24+
25+
apply plugin: 'forge'
26+
27+
version = "1.7.10-10.13.2.1230F-1.0R"
28+
group= "com.httymd" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
29+
archivesBaseName = "HTTYMD"
30+
31+
minecraft {
32+
version = "1.7.10-10.13.2.1230"
33+
runDir = "minecraft"
34+
}
35+
36+
processResources
37+
{
38+
// this will ensure that this task is redone when the versions change.
39+
inputs.property "version", project.version
40+
inputs.property "mcversion", project.minecraft.version
41+
42+
// replace stuff in mcmod.info, nothing else
43+
from(sourceSets.main.resources.srcDirs) {
44+
include 'mcmod.info'
45+
46+
// replace version and mcversion
47+
expand 'version':project.version, 'mcversion':project.minecraft.version
48+
}
49+
50+
// copy everything else, thats not the mcmod.info
51+
from(sourceSets.main.resources.srcDirs) {
52+
exclude 'mcmod.info'
53+
}
54+
}
55+
56+
sourceSets {
57+
main {
58+
java { srcDir 'java' }
59+
resources { srcDir 'resources' }
60+
}
61+
}
62+
63+
64+
dependencies {
65+
// you may put jars on which you depend on in ./libs
66+
// or you may define them like so..
67+
//compile "some.group:artifact:version:classifier"
68+
//compile "some.group:artifact:version"
69+
70+
// real examples
71+
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
72+
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
73+
74+
// for more info...
75+
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
76+
// http://www.gradle.org/docs/current/userguide/dependency_management.html
77+
78+
}
79+
80+

gradle/wrapper/gradle-wrapper.jar

49.8 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Wed Jul 02 15:54:47 CDT 2014
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip

gradlew

Lines changed: 164 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)