[Mod] Ultimate Tools [ut]

Post Reply
User avatar
Minearriatest
Member
Posts: 34
Joined: Mon Nov 25, 2013 18:28
Location: United Kingdom

[Mod] Ultimate Tools [ut]

by Minearriatest » Post

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.
Last edited by Minearriatest on Mon Jan 27, 2014 21:11, edited 1 time in total.
Minetest user name: asg
Try out some mods which I contributed in:
Jungle Tools(made) Ice + Magma Tools(contributed) Ultimate Tools(made)

User avatar
Krock
Developer
Posts: 4649
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker
Location: Switzerland
Contact:

by Krock » Post

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.
Last edited by Krock on Wed Jan 15, 2014 13:53, edited 1 time in total.
Look, I programmed a bug for you. >> Mod Search Engine << - Mods by Krock - DuckDuckGo mod search bang: !mtmod <keyword here>

User avatar
Minearriatest
Member
Posts: 34
Joined: Mon Nov 25, 2013 18:28
Location: United Kingdom

by Minearriatest » Post

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.
Minetest user name: asg
Try out some mods which I contributed in:
Jungle Tools(made) Ice + Magma Tools(contributed) Ultimate Tools(made)

User avatar
hoodedice
Member
Posts: 1374
Joined: Sat Jul 06, 2013 06:33
GitHub: hoodedice
IRC: hoodedice
In-game: hoodedice
Location: world
Contact:

by hoodedice » Post

Krock wrote:bauxit aluminiumoxid
I'm getting a headache now...

Bauxite. Aluminium Oxide aka Al2O3
Last edited by hoodedice on Wed Jan 15, 2014 21:08, edited 1 time in total.
7:42 PM - Bauglio: I think if you go to staples you could steal firmware from a fax machine that would run better than win10 does on any platform
7:42 PM - Bauglio: so fudge the stable build
7:43 PM - Bauglio: get the staple build

User avatar
qwrwed
Member
Posts: 326
Joined: Sun Jul 22, 2012 20:56
In-game: qwrwed or Nitro

by qwrwed » Post

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.

User avatar
Minearriatest
Member
Posts: 34
Joined: Mon Nov 25, 2013 18:28
Location: United Kingdom

by Minearriatest » Post

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.
Minetest user name: asg
Try out some mods which I contributed in:
Jungle Tools(made) Ice + Magma Tools(contributed) Ultimate Tools(made)

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 21 guests