Skip to content

Commit

Permalink
Prepare for initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
freneticfeline committed Sep 24, 2015
1 parent 521922e commit 0240762
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
35 changes: 31 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
# Emerald Material Mod by FreneticFeline

Emerald Material Mod is a Minecraft mod that provides tools, weapons and armor
that is constructed from Emeralds, along with corresponding recipes. The
Emerald material's properies fall somewhere between Iron and Diamond.
Emerald Material Mod is a Minecraft Forge mod that provides Emerald tools, weapons, armor
and blocks, along with corresponding recipes.

### Items
The following items are made available, and are intended to be useful in
a survival game. The Emerald material's properties fall somewhere between Iron and Diamond.

- Emerald Spade
- Emerald Hoe
- Emerald Axe
- Emerald Pickaxe
- Emerald Sword
- Emerald Broadsword
- Emerald Bow
- Emerald Helmet
- Emerald Chest
- Emerald Pants
- Emerald Boots

### Blocks
The following blocks are made available, and are intended to be used only in Creative
Mode, as they are impractical in a survival game.

- Emerald Stairs
- Emerald Slab
- Emerald Wall
- Emerald Door


## Installation Requirements
Emerald Material Mod versions 1.8-x.x require Minecraft 1.8 with compatible version
Expand All @@ -13,7 +38,9 @@ Copy the `mod_emeraldmaterial_forge-1.8-x.x.jar` file to the `mods` directory in
data directory.

## Usage Instructions

All items are crafted with recipies similar to their iron or diamond couterparts, but using
Emeralds as the main material. Blocks can be crafted with Emerald Blocks using standard recipies,
but they will most often be obtained from the expected tabs in Creative Mode.

## Development Setup Instructions
Follow the standard Forge mod development setup instructions. They can be found
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

apply plugin: 'forge'

version = "1.8-0.1"
version = "1.8-1.0"
group = "net.unladenswallow.minecraft.emeraldmaterial" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "mod_emeraldmaterial_forge"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,10 @@
import net.unladenswallow.minecraft.emeraldmaterial.item.ItemEmeraldPickaxe;


@Mod(modid = ModEmeraldMaterial.MODID, name = ModEmeraldMaterial.MODNAME,
version = ModEmeraldMaterial.VERSION, useMetadata = true)
@Mod(modid = ModEmeraldMaterial.MODID, useMetadata = true)
public class ModEmeraldMaterial {

public static final String MODID = "mod_emeraldmaterial";
public static final String MODNAME = "Emerald Material Mod";
public static final String VERSION = "1.8-0.1";

@SidedProxy(clientSide="net.unladenswallow.minecraft.emeraldmaterial.ClientProxy", serverSide="net.unladenswallow.minecraft.emeraldmaterial.ServerProxy")
public static CommonProxy proxy;
Expand Down Expand Up @@ -104,7 +101,7 @@ public void preInit(FMLPreInitializationEvent preInitEvent) {
@EventHandler
public void init (FMLInitializationEvent event) {
ModEmeraldMaterial.proxy.init(event);
EMLogger.info("Initializing " + ModEmeraldMaterial.MODNAME);
EMLogger.info("Initializing " + ModEmeraldMaterial.MODID);
addRecipes();
addSmelting();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"modid": "mod_emeraldmaterial",
"name": "Emerald Material Mod",
"description": "Construct tools, weapons and armor from Emeralds.",
"description": "Construct tools, weapons, armor and blocks from Emeralds.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "",
Expand Down

0 comments on commit 0240762

Please sign in to comment.