[WIP] Cobble Compression [cobble_compression]

User avatar
veikk0
New member
 
Posts: 7
Joined: Tue Feb 05, 2013 16:35

[WIP] Cobble Compression [cobble_compression]

by veikk0 » Sat Jul 25, 2015 12:04

------------ Cobble Compression ------------
-------------- GitHub project <----> ZIP download --------------

---- Code license: GPLv3 ----- Texture license: CC BY-SA 2.0 ----

Dependencies: default

Image

This is a simple mod that makes cobblestone easier to store and aims to make it more useful. Currently it adds eight tiers of compressed cobblestone and a full set of craftable tools for each tier.

Each tier of compressed cobblestone is crafted from nine pieces of the previous cobblestone tier:

9 Cobblestone makes 1 Compressed Cobblestone
Image
9 Compressed Cobblestone makes 1 Double Compressed Cobblestone
Image

And so on, this goes up to Octuple (8x) Compressed Cobblestone.

When you want your regular cobblestone back you can decompress your compressed cobblestone blocks:
Image


Compressed Cobblestone tools

Compressed Cobblestone tools are crafted the same way normal stone tools are, only with Compressed Cobblestone. Currently the compressed cobblestone tools have the same stats as the default stone tools apart from durability, which multiplies by four every tier. I'll probably increase this at some point but you can easily change it yourself by changing the value of the "multiplier" variable in the "tools.lua" file.

How much cobblestone does each tier hold in total?

Making higher tiers of compressed cobblestone requires exponentially more regular cobblestone:

  • 1 Compressed Cobblestone = 9 Cobblestone
  • 1 Double Compressed Cobblestone = 81 Cobblestone
  • 1 Triple Compressed Cobblestone = 729 Cobblestone
  • 1 Quadruple Compressed Cobblestone = 6,561 Cobblestone
  • 1 Quintuple Compressed Cobblestone = 59,049 Cobblestone
  • 1 Sextuple Compressed Cobblestone = 531,441 Cobblestone
  • 1 Septuple Compressed Cobblestone = 4,782,969 Cobblestone
  • 1 Octuple Compressed Cobblestone = 43,046,721 Cobblestone

TODO LIST:
  • Make tools more useful
    • Trade some durability for better stats?
    • 8x durability increase every tier?
  • More uses for various tiers of compressed cobblestone
    • Better blast resistance for more TNT-proof buildings
      • Compress sand and smelt it into "bulletproof" glass?
    • Smelt into obsidian?
    • Create a portal to another dimension/location? (similar to the Nether mod, just with CC instead of obsidian)
    • Use Technic's compressors for something?
  • Remove some of the higher tiers? (I mean come on, who is ever going to collect 43 million cobblestone?)
    • Use Technic to add a faster way of generating cobblestone?
  • Textures for tool tiers (currently uses the same textures as the default stone tools)
    • Better textures in general

Feedback, suggestions, and fixes are welcome.
Last edited by veikk0 on Sun Jul 26, 2015 10:47, edited 5 times in total.
 

User avatar
ExeterDad
Member
 
Posts: 1121
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad

Re: [WIP] Cobble Compression [cobble_compression]

by ExeterDad » Sat Jul 25, 2015 12:17

Cool contribution!

But I'm having a time getting my brain to understand the math.
To me double means two times. So shouldn't Double Compressed be 18 cobblestone?
And... Triple = 27 (3x9), Quadruple = 36 (4x9), Quintuple = 45 (5x9), and so on?

And are the higher levels of compressed cobble all created from default cobbles, or can compressed cobbles be combined to create new higher level compressed cobbles?
٩(̾●̮̮̃̾•̃̾)۶

Kibbie and I have a beautiful public server now! HOMETOWN
 

User avatar
veikk0
New member
 
Posts: 7
Joined: Tue Feb 05, 2013 16:35

Re: [WIP] Cobble Compression [cobble_compression]

by veikk0 » Sat Jul 25, 2015 12:44

ExeterDad wrote:Cool contribution!

But I'm having a time getting my brain to understand the math.
To me double means two times. So shouldn't Double Compressed be 18 cobblestone?
And... Triple = 27 (3x9), Quadruple = 36 (4x9), Quintuple = 45 (5x9), and so on?

And are the higher levels of compressed cobble all created from default cobbles, or can compressed cobbles be combined to create new higher level compressed cobbles?

The name describes how many times the material has been through a compression process. I wanted to compress as much cobblestone at once as possible (hence it's always 9 in a crafting grid) but I couldn't come up with an exact descriptive name that isn't made of numbers which would reflect this. I might change it since "81 Cobblestone" or something like that would be more informative, but that might make things confusing in another way. The current name makes a clear distinction between the items, and while "X Cobblestone" might be more informative it would make it awkward to communicate it verbally ("I have 25 "81 Cobblestones"). I'm open to suggestions though.

All tiers are created by placing 9 of the previous tier in a crafting grid, so 9 cobblestone -> 1 compressed cobblestone, 9 compressed cobblestone -> 1 double compressed cobblestone, etc. I only included the list of total cobblestone needed for every tier for curiosity's sake. I'll probably add a universal crafting recipe image for the compression process for more clarity.
 

gravelman
Member
 
Posts: 48
Joined: Sat Dec 06, 2014 12:31
In-game: gravelman

Re: [WIP] Cobble Compression [cobble_compression]

by gravelman » Sat Jul 25, 2015 13:07

WTF?I had exactly the same idea for a mod like this a few days ago! :D
Hopp Schwizz!
 

User avatar
LionsDen
Member
 
Posts: 525
Joined: Thu Jun 06, 2013 03:19

Re: [WIP] Cobble Compression [cobble_compression]

by LionsDen » Sat Jul 25, 2015 17:19

Can you uncompress them to get the original (eventually) cobblestone back. If not, you might want to add that recipe so that it does actually become a good storage mod for cobblestone.
 

User avatar
veikk0
New member
 
Posts: 7
Joined: Tue Feb 05, 2013 16:35

Re: [WIP] Cobble Compression [cobble_compression]

by veikk0 » Sat Jul 25, 2015 19:24

LionsDen wrote:Can you uncompress them to get the original (eventually) cobblestone back. If not, you might want to add that recipe so that it does actually become a good storage mod for cobblestone.

Yes, the mod includes reverse recipes so you can keep uncompressing until you have regular cobblestone. Now that you mentioned it, I might be a good idea to add recipes to uncompress directly to regular cobblestone without having to go through the extra steps.

(There was also a typo in the quadruple compressed cobble recipes which broke them, it's fixed now.)
 

Anonymous_moose
Member
 
Posts: 38
Joined: Tue Aug 27, 2013 20:25

Re: [WIP] Cobble Compression [cobble_compression]

by Anonymous_moose » Sun Jul 26, 2015 22:25

Perhaps you can make the cobblestone get harder to mine as it gets more compressed.
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: [WIP] Cobble Compression [cobble_compression]

by Krock » Mon Jul 27, 2015 08:24

Is there anyone who would collect "531,441 Cobblestone"? This is just crazy.
I wrote a mod for my older server [down] that allowed to craft 9 cobble into 1 polished cobble block and backwards to 8 cobble nodes again. It was already enough to get rid of the mosty cobble and to build stronger buildings.

About the tools: I think they could have faster digging times and be able to dig cracky nodes with group 1.
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
cd2
Member
 
Posts: 552
Joined: Mon Jun 01, 2015 06:30
GitHub: cdqwertz
IRC: freenode - cd2 InchraNet - cd
In-game: cd cd2

Re: [WIP] Cobble Compression [cobble_compression]

by cd2 » Wed Jul 29, 2015 09:52

cool idea!
You also might make a mod for dirt/grass/coal... compression :)
 

User avatar
LionsDen
Member
 
Posts: 525
Joined: Thu Jun 06, 2013 03:19

Re: [WIP] Cobble Compression [cobble_compression]

by LionsDen » Wed Jul 29, 2015 17:09

You can already compress 9 coal into 1 block. It gives a long burn time in furnaces. Longer than 99 ores will take to smelt anyway.
 

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

Re: [WIP] Cobble Compression [cobble_compression]

by Hybrid Dog » Mon Aug 17, 2015 19:12

 


Return to WIP Mods

Who is online

Users browsing this forum: No registered users and 53 guests

cron