Skip to content

Commit

Permalink
First release state
Browse files Browse the repository at this point in the history
Added textures for all trees, 3 lang files and a pretty little logo.
  • Loading branch information
TheIcyOne committed Apr 18, 2017
1 parent 16f9993 commit 4b047d1
Show file tree
Hide file tree
Showing 16 changed files with 100 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


version = "1.0"
group = "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "modid"
version = "Alpha 1.0"
group = "com.headfishindustries.sticky" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "sticky"

sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly.
compileJava {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package com.headfishindustries.sticky.defs;

import com.headfishindustries.sticky.blocks.leaves.LeavesMonster;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack;

public class TabDefs {
public static final CreativeTabs tabStickyTrees = new CreativeTabs("sticky.Trees") {public ItemStack getTabIconItem(){return new ItemStack(new LeavesMonster());}};
public static final CreativeTabs tabStickyTrees = new CreativeTabs("sticky.Trees") {public ItemStack getTabIconItem(){return new ItemStack(BlockDefs.saplingRainbow);}};
}
27 changes: 27 additions & 0 deletions src/main/resources/assets/sticky/lang/en_UK.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#English translation by The_Icy_One

itemGroup.sticky.Trees=Sticky Blocks

tile.leavesmonster.name=Monstrous Leaves
tile.leavesvillager.name=Homely Leaves
tile.leavesender.name=Fluctuating Leaves
tile.leavesexplosive.name=Unstable Leaves
tile.leavesnether.name=Incendiary Leaves
tile.leavespassive.name=Unassuming Leaves
tile.leavesrainbow.name=Variegated Leaves

tile.logmonster.name=Monstrous Log
tile.logvillager.name=Homely Log
tile.logender.name=Fluctuating Log
tile.logexplosive.name=Unstable Log
tile.lognether.name=Incendiary Log
tile.logpassive.name=Unassuming Log
tile.lograinbow.name=Variegated Log

tile.saplingmonster.name=Monstrous Sapling
tile.saplingvillager.name=Homely Sapling
tile.saplingender.name=Fluctuating Sapling
tile.saplingexplosive.name=Unstable Sapling
tile.saplingnether.name=Incendiary Sapling
tile.saplingpassive.name=Unassuming Sapling
tile.saplingrainbow.name=Variegated Sapling
27 changes: 27 additions & 0 deletions src/main/resources/assets/sticky/lang/en_US.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#English (Simplified) translation by The_Icy_One

itemGroup.sticky.Trees=Sticky Blocks

tile.leavesmonster.name=Monstrous Leaves
tile.leavesvillager.name=Homely Leaves
tile.leavesender.name=Fluctuating Leaves
tile.leavesexplosive.name=Unstable Leaves
tile.leavesnether.name=Incendiary Leaves
tile.leavespassive.name=Unassuming Leaves
tile.leavesrainbow.name=Variegated Leaves

tile.logmonster.name=Monstrous Log
tile.logvillager.name=Homely Log
tile.logender.name=Fluctuating Log
tile.logexplosive.name=Unstable Log
tile.lognether.name=Incendiary Log
tile.logpassive.name=Unassuming Log
tile.lograinbow.name=Variegated Log

tile.saplingmonster.name=Monstrous Sapling
tile.saplingvillager.name=Homely Sapling
tile.saplingender.name=Fluctuating Sapling
tile.saplingexplosive.name=Unstable Sapling
tile.saplingnether.name=Incendiary Sapling
tile.saplingpassive.name=Unassuming Sapling
tile.saplingrainbow.name=Variegated Sapling
20 changes: 20 additions & 0 deletions src/main/resources/assets/sticky/lang/es_ES.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#Traduccion a Español Estándar por The_Icy_One

itemGroup.sticky.Trees=Bloques Pegajosos

tile.leavesmonster.name=Hojas Monstruosas
tile.leavesvillager.name=Hojas Familiares
tile.leavesender.name=Hojas Oscilantes
tile.leavesexplosive.name=Hojas Inestables
tile.leavesnether.name=Hojas Inflamables
tile.leavespassive.name=Hojas Pasivas
tile.leavesrainbow.name=Hojas Jaspeadas

tile.logmonster.name=Ramas Monstruosas
tile.logvillager.name=Ramas Familiares
tile.logender.name=Ramas Oscilantes
tile.logexplosive.name=Ramas Inestables
tile.lognether.name=Ramas Inflamables
tile.logpassive.name=Ramas Pasivas
tile.lograinbow.name=Ramas Jaspeadas

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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"animation": {
"frametime": 20,
"interpolate": true
}
}
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.
16 changes: 16 additions & 0 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[
{
"modid": "sticky",
"name": "sticky",
"description": "Woodn't you like to know what this does? Leave this menu and find out.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
"authorList": ["The_Icy_One"],
"credits": "My favourite type of credits are Industrial Credits.",
"logoFile": "stick.png",
"screenshots": [],
"dependencies": []
}
]
Binary file added src/main/resources/stick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4b047d1

Please sign in to comment.