Commit Graph

4 Commits

Author SHA1 Message Date
Tim 78045a752f move most other homedecor nodes to the new registration function, remove any unnecessary fields due to minetest or homedecor defaults 2015-01-24 00:34:02 +01:00
Vanessa Ezekowitz 67598d3280 add blank canvas craft item and recipes for paintings
First, craft a blank canvas from four sticks
and some white wool:

- s -
s W s
- s -

Then, combine that canvas with some black and white dyes in the right
pattern to get the painting you want.

Paintings are numbred in-game, from 1 to 20.  Since there are so many
paintings, and so little crafting space, the only way I could think to
do it was to use binary for the recipe.  Convert the number of the
painting you want into binary, then use black dye for each 0 and white for
each 1, and lay them down into the crafting grid in this pattern:

bit2  bit1  bit0
  -   bit4  bit3
  -   Canv.   -

With the blank canvas in the bottom center slot.  For example, if you
want painting number 9, that would be 01001 in binary, so you'd arrange
the crafting grid like so:

Black Black White  --->  Painting #9
  -   Black White
  -   Canv.   -
2014-07-04 04:45:58 -04:00
Vanessa Ezekowitz a19c9e6dee make paintings' model/frames better-defined. 2014-06-25 08:14:25 -04:00
Vanessa Ezekowitz 8465422c37 added a whole bunch of paintings
total of 20, wall-hanging style
no crafting recipes yet.
2014-06-25 07:31:50 -04:00