Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Constructing everything out of ice?  (Read 1983 times)

AfterShave

  • Bay Watcher
    • View Profile
Constructing everything out of ice?
« on: November 13, 2009, 01:31:01 pm »

I decided to do conquer a glacier and i noticed that i can't make doors and such out of ice. Is it possible to mod it in or is it impossible?
I searched the raws for water and ice but i couldn't find anything to change.
Logged
Gotta love the DF forums. A statement like this anywhere else could land you a couple years of counseling.

This is an anagram of my name
      Highborn Jerk Monster

GenericOverusedName

  • Bay Watcher
    • View Profile
Re: Constructing everything out of ice?
« Reply #1 on: November 13, 2009, 01:37:50 pm »

Water and ice are hardcoded into the game, unfortunately. Sorry :(
Logged

NewoTigra

  • Bay Watcher
    • View Profile
Re: Constructing everything out of ice?
« Reply #2 on: November 13, 2009, 01:56:26 pm »

You can add in woods, metals and stones named ice, and then reactions to make them from. To save you some time, and since I already have files as such
Spoiler (click to show/hide)
Logged

The13thRonin

  • Bay Watcher
  • Profession: Handsome Rogue
    • View Profile
Re: Constructing everything out of ice?
« Reply #3 on: November 13, 2009, 03:22:07 pm »

I'm pretty sure liquids can't be used at the smelter...
Logged
I'm Digging Deeper... AGAIN... You Should Too!

Dig Deeper DIAMOND - 750+ items of new content including; new plants, new creatures, new metals, new woods, new gems, new stones, new crafts and much, much more.

florian

  • Bay Watcher
    • View Profile
Re: Constructing everything out of ice?
« Reply #4 on: November 13, 2009, 03:55:47 pm »

Actually, I think you should be able to use ice at a masons' workshop. Ice could be an economic stone (look into your {z} "Stone" menu).
Logged

3

  • Bay Watcher
    • View Profile
Re: Constructing everything out of ice?
« Reply #5 on: November 13, 2009, 07:57:09 pm »

I'm pretty sure liquids can't be used at the smelter...

That's not what he's doing. He's using the "water" stone created when ice is mined out. Funnily enough, putting LIQUID_MISC into the reaction instead of STONE should work in exactly the same way.

Actually, I think you should be able to use ice at a masons' workshop. Ice could be an economic stone (look into your {z} "Stone" menu).

Doesn't work, unfortunately. Mined ice can be used to create buildings but pretty much nothing besides that.
Logged

sunshaker

  • Bay Watcher
    • View Profile
Re: Constructing everything out of ice?
« Reply #6 on: November 14, 2009, 12:53:17 am »

I decided to do conquer a glacier and i noticed that i can't make doors and such out of ice. Is it possible to mod it in or is it impossible?
I searched the raws for water and ice but i couldn't find anything to change.

Smelter reactions can do weird things. I can make Ice Blocks and Ice Rocks so I bet you can make doors and weapons and the like you just have to figure out the correct reaction strings to make them.

Code: [Select]
[REACTION:ICE_BALL]
[NAME:make ice ball]
[SMELTER]
[PRODUCT:100:1:STONE:NO_SUBTYPE:WATER:NO_MATGLOSS]

[REACTION:ICE_CUBE]
[NAME:make ice block]
[SMELTER]
[REAGENT:1:STONE:NO_SUBTYPE:WATER:NO_MATGLOSS]
[PRODUCT:100:1:BLOCKS:NO_SUBTYPE:WATER:NO_MATGLOSS]

Given that those work you should be able to do something like

Code: [Select]
[REACTION:ICE_DOOR]
[NAME:make ice door]
[SMELTER]
[REAGENT:1:STONE:NO_SUBTYPE:WATER:NO_MATGLOSS]
[PRODUCT:100:1:DOOR:NO_SUBTYPE:WATER:NO_MATGLOSS]

Not having tested this it might not work, it may also do weird things.
Logged