summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance5057 <Lance5057@gmail.com>2015-01-21 20:17:38 -0600
committerLance5057 <Lance5057@gmail.com>2015-01-21 20:17:38 -0600
commit6925bf39ee227970c19b979806d52bf6a0ca5b3b (patch)
tree8b0d55d2c2f31afaa1a227a896350002b84a8431
parent24a21323e9a70c8115e467465cc86a977277f293 (diff)
Rearranged some stuff to make it cleaner.
-rw-r--r--CREDITS-fml.txt28
-rw-r--r--CrestMount.pngbin533 -> 0 bytes
-rw-r--r--ModelCrestMount.java83
-rw-r--r--Techne Models/CrestMount.tcn (renamed from CrestMount.tcn)bin1456 -> 1456 bytes
-rw-r--r--Techne Models/TinkerArmor.tcn (renamed from bin/assets/tinkersdefense/textures/armor/TinkerArmor.tcn)bin2094 -> 2094 bytes
-rw-r--r--Techne Models/TinkerHelm.tcn (renamed from bin/gmail/Lance5057/items/TinkerHelm.tcn)bin1556 -> 1556 bytes
-rw-r--r--src/main/java/gmail/Lance5057/items/TinkerHelm.tcnbin1556 -> 0 bytes
-rw-r--r--src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor.tcnbin2094 -> 0 bytes
-rw-r--r--src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor2.pngbin823 -> 0 bytes
9 files changed, 0 insertions, 111 deletions
diff --git a/CREDITS-fml.txt b/CREDITS-fml.txt
deleted file mode 100644
index 97122f5..0000000
--- a/CREDITS-fml.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-This is Forge Mod Loader.
-
-You can find the source code at all times at https://github.com/MinecraftForge/FML
-
-This minecraft mod is a clean open source implementation of a mod loader for minecraft servers
-and minecraft clients.
-
-The code is authored by cpw.
-
-It began by partially implementing an API defined by the client side ModLoader, authored by Risugami.
-http://www.minecraftforum.net/topic/75440-
-This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader.
-
-It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge.
-http://www.minecraftforge.net/
-
-Additionally, it contains an implementation of topological sort based on that
-published at http://keithschwarz.com/interesting/code/?dir=topological-sort
-
-It also contains code from the Maven project for performing versioned dependency
-resolution. http://maven.apache.org/
-
-It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/
-with credit to it's authors.
-
-Forge Mod Loader downloads components from the Minecraft Coder Pack
-(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team.
-
diff --git a/CrestMount.png b/CrestMount.png
deleted file mode 100644
index 61d6936..0000000
--- a/CrestMount.png
+++ /dev/null
Binary files differ
diff --git a/ModelCrestMount.java b/ModelCrestMount.java
deleted file mode 100644
index 53f8244..0000000
--- a/ModelCrestMount.java
+++ /dev/null
@@ -1,83 +0,0 @@
-// Date: 1/18/2015 9:46:49 PM
-// Template version 1.1
-// Java generated by Techne
-// Keep in mind that you still need to fill in some blanks
-// - ZeuX
-
-
-
-
-
-
-package net.minecraft.src;
-
-public class ModelCrestMount extends ModelBase
-{
- //fields
- ModelRenderer ShieldMount;
- ModelRenderer Base;
- ModelRenderer SwordMount1;
- ModelRenderer SwordMount2;
- ModelRenderer SwordMount3;
-
- public ModelCrestMount()
- {
- textureWidth = 32;
- textureHeight = 32;
-
- ShieldMount = new ModelRenderer(this, 20, 6);
- ShieldMount.addBox(0F, 0F, 0F, 2, 7, 2);
- ShieldMount.setRotationPoint(-1F, 17F, -1F);
- ShieldMount.setTextureSize(32, 32);
- ShieldMount.mirror = true;
- setRotation(ShieldMount, 0F, 0F, 0F);
- Base = new ModelRenderer(this, 0, 6);
- Base.addBox(0F, 0F, 0F, 4, 4, 4);
- Base.setRotationPoint(-2F, 20F, -2F);
- Base.setTextureSize(32, 32);
- Base.mirror = true;
- setRotation(Base, 0F, 0F, 0F);
- SwordMount1 = new ModelRenderer(this, 0, 0);
- SwordMount1.addBox(-5F, 0F, -2F, 10, 2, 4);
- SwordMount1.setRotationPoint(0F, 22F, 0F);
- SwordMount1.setTextureSize(32, 32);
- SwordMount1.mirror = true;
- setRotation(SwordMount1, 0F, 0.7853982F, 0F);
- SwordMount2 = new ModelRenderer(this, 0, 0);
- SwordMount2.addBox(-5F, 0F, -2F, 10, 2, 4);
- SwordMount2.setRotationPoint(0F, 22F, 0F);
- SwordMount2.setTextureSize(32, 32);
- SwordMount2.mirror = true;
- setRotation(SwordMount2, 0F, -0.7853982F, 0F);
- SwordMount3 = new ModelRenderer(this, 0, 0);
- SwordMount3.addBox(-5F, 0F, -2F, 10, 2, 4);
- SwordMount3.setRotationPoint(0F, 21.9F, 0F);
- SwordMount3.setTextureSize(32, 32);
- SwordMount3.mirror = true;
- setRotation(SwordMount3, 0F, 1.570796F, 0F);
- }
-
- public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
- {
- super.render(entity, f, f1, f2, f3, f4, f5);
- setRotationAngles(f, f1, f2, f3, f4, f5);
- ShieldMount.render(f5);
- Base.render(f5);
- SwordMount1.render(f5);
- SwordMount2.render(f5);
- SwordMount3.render(f5);
- }
-
- private void setRotation(ModelRenderer model, float x, float y, float z)
- {
- model.rotateAngleX = x;
- model.rotateAngleY = y;
- model.rotateAngleZ = z;
- }
-
- public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)
- {
- super.setRotationAngles(f, f1, f2, f3, f4, f5);
- }
-
-}
diff --git a/CrestMount.tcn b/Techne Models/CrestMount.tcn
index 77f597a..77f597a 100644
--- a/CrestMount.tcn
+++ b/Techne Models/CrestMount.tcn
Binary files differ
diff --git a/bin/assets/tinkersdefense/textures/armor/TinkerArmor.tcn b/Techne Models/TinkerArmor.tcn
index f967b25..f967b25 100644
--- a/bin/assets/tinkersdefense/textures/armor/TinkerArmor.tcn
+++ b/Techne Models/TinkerArmor.tcn
Binary files differ
diff --git a/bin/gmail/Lance5057/items/TinkerHelm.tcn b/Techne Models/TinkerHelm.tcn
index 4344f18..4344f18 100644
--- a/bin/gmail/Lance5057/items/TinkerHelm.tcn
+++ b/Techne Models/TinkerHelm.tcn
Binary files differ
diff --git a/src/main/java/gmail/Lance5057/items/TinkerHelm.tcn b/src/main/java/gmail/Lance5057/items/TinkerHelm.tcn
deleted file mode 100644
index 4344f18..0000000
--- a/src/main/java/gmail/Lance5057/items/TinkerHelm.tcn
+++ /dev/null
Binary files differ
diff --git a/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor.tcn b/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor.tcn
deleted file mode 100644
index f967b25..0000000
--- a/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor.tcn
+++ /dev/null
Binary files differ
diff --git a/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor2.png b/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor2.png
deleted file mode 100644
index 706a34a..0000000
--- a/src/main/resources/assets/tinkersdefense/textures/armor/TinkerArmor2.png
+++ /dev/null
Binary files differ