Page 1 of 1

[Mod] Ultimate Tools [ut]

Posted: Tue Jan 14, 2014 19:48
by Minearriatest
License: WTFPL for code, CC-BY-NC-SA for textures.
Dependencies: default
Download: https://github.com/asgasg/ut/archive/master.zip
or browse the code:https://github.com/asgasg/ut

Note: Rename the extracted folder into "ut" without the quotation marks.
Spoiler

ORES

This mod adds 3 new ores which can be found rarely under ground. The 3 types are: Magnesium, Aluminium and Platinum. When mined they all drop their respective lumps.

Magnesium ore: Found between layer -200 and -350

Aluminium ore: Found between layer -250 and -400

Platinum ore: Found between layer -300 and -500

SHADOW FORGE

Unlike other lumps, these ones must be smelted with a special type of furnace. You will need to craft a Shadow Forge in which it acts similar to the spore grinder in Jungle Tools. You put the bar in one slot, then click 'smelt' to turn one lump into its respective bar. You can keep clicking smelt until the output is full.

Code: Select all


O O O
O F O = Shadow forge
M L M

O= Obsidian
F= Furnace
M= Mese Block
L= Lava bucket 

TOOLS

You can now craft tools out of these bars. Here is a list of the tools:

Greatsword- Functions as a sword. Damage= M:7HP, A:8HP, P:9HP

Picel- Functions as a pickaxe and a shovel. Damage= M:5HP, A:6HP, P:7HP

Waraxe- Functions as an axe. Damage= M:6HP, A:7HP, P:8HP

The crafting is the same for all 3 metals.

Code: Select all


- - M      M - -
- M - or   - M - = Greatsword
S - -      - - S

M M M      M M M
- S M or   M S - = Picel
S - M      M - S

M M M
M S M = Waraxe
- S -

M=Material(Magnesium, Aluminium, Platinum)
S=Stick
-=Nothing

BLOCKS

As with all the other metals, these 3 metals can be turned into a block by filling the 3x3 crafting grid with the bars. Unlike other blocks, these ones have the respective metal's symbol and atomic number on all sides. The block can be turned back into 9 of the respective bars.

ULTIMATE TOOLS

Now the biggest part of the mod, the ultimate tools. There are only 2 tools in this tool set: The Excalibur and the Draxel. these are crafted with the previous 3 metal's tools and some Diamond and Mese blocks.
Tools:
Excalibur: Functions as a sword. Damage: 12 HP

Draxel: Functions as a pick, axe and shovel. Damage: 10HP

Code: Select all


MS AS PS
MB DB MB = Excalibur

MS= Magnesium Greatsword
AS= Aluminium Greatsword
PS= Platinum Greatsword

MP AP PP
MW AW PW = Draxel
MB DB MB

MP= Magnesium Picel
AP= Aluminium Picel
PP= Platinum Picel
MW= Magnesium Waraxe
AW= Aluminium Waraxe
PW= Platinum Waraxe

MB= Mese Block
DB= Diamond Block



Spoiler
Image
Image
Old Ultimate textures:
Image
To help you distinguish the colours of the 3 metals:
Image
License: WTFPL for code, CC-BY-NC-SA for textures.
Dependencies: default
Download: https://github.com/asgasg/ut/archive/master.zip
or browse the code:https://github.com/asgasg/ut

Note: Rename the extracted folder into 'ut' without the quotation marks

If you have any feedback, suggestions or bugs, just tell me in this topic.

Posted: Wed Jan 15, 2014 13:43
by Krock
As far I see is the ideal depth to mine those ores between -200 and -400
I like this idea but the aluminium isn't a real ore, because: bauxit -> aluminiumoxid -> aluminium

/me is testing it now for bugs

I'd recommend you to use a function to add the block-craftings automatically because you've already made a list of the ores in an array.

Posted: Wed Jan 15, 2014 19:24
by Minearriatest
Krock wrote:As far I see is the ideal depth to mine those ores between -200 and -400
I like this idea but the aluminium isn't a real ore, because: bauxit -> aluminiumoxid -> aluminium

/me is testing it now for bugs

I'd recommend you to use a function to add the block-craftings automatically because you've already made a list of the ores in an array.
Thanks for the feedback.
I was aware that aluminium ore doesn't exist, but I picked 3 random metals and though I would just add aluminium ore (I'm lazy) instead of bauxite (I could change this in a future update where you mine bauxite then you put the bauxite in a furnace and you get aluminium ore, but that would mean it would be easier to get platinum)
I'm not sure what function to use.

Posted: Wed Jan 15, 2014 21:08
by hoodedice
Krock wrote:bauxit aluminiumoxid
I'm getting a headache now...

Bauxite. Aluminium Oxide aka Al2O3

Posted: Tue Jan 21, 2014 08:32
by qwrwed
Krock wrote:I'd recommend you to use a function to add the block-craftings automatically because you've already made a list of the ores in an array.
Done. Instead of there being three register functions for each type of item, there is one.

Posted: Wed Jan 22, 2014 21:23
by Minearriatest
qwrwed wrote:
Krock wrote:I'd recommend you to use a function to add the block-craftings automatically because you've already made a list of the ores in an array.
Done. Instead of there being three register functions for each type of item, there is one.
Thanks qwrwed.