Commit Graph

77 Commits

Author SHA1 Message Date
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
76f92d21d6 fix oven recipe 2014-06-30 13:22:51 -04:00
Vanessa Ezekowitz
86345c778f merge no-moreblocks recipes back into crafts.lua
as these are now the preferred recipes.
2014-06-30 13:07:19 -04:00
Vanessa Ezekowitz
1cb5a5c0fa better recipe for microwave 2014-06-30 12:48:43 -04:00
Vanessa Ezekowitz
f9b3160c1d use dye to create frosted skylight
use furnace to turn it back into clear one
2014-06-30 11:37:20 -04:00
Vanessa Ezekowitz
fe6a5e1a84 use large glass tabletops to form glass skylights
instead of crafting them from glass blocks
2014-06-30 00:02:51 -04:00
Vanessa Ezekowitz
bf3179083a use 2 instead of 4 tabletops to translate small round -> small square
and small square -> large, applies to both glass and wood
2014-06-29 23:58:42 -04:00
Vanessa Ezekowitz
21b6c047b6 use wooden slabs for top of desk 2014-06-29 23:47:57 -04:00
Vanessa Ezekowitz
57ecac2baa Add plasma lamp 2014-06-29 12:49:35 -04:00
Vanessa Ezekowitz
65246dabfa add recipe for desk 2014-06-29 12:04:56 -04:00
Vanessa Ezekowitz
f0c6ab015f allow for technic motors to be used in washer, dryer and dishwasher 2014-06-29 11:12:33 -04:00
Vanessa Ezekowitz
328ceacd25 better recipe for oven 2014-06-29 06:40:28 -04:00
Vanessa Ezekowitz
4dab7d0acd better recipe for asphalt shingles 2014-06-29 06:32:27 -04:00
Vanessa Ezekowitz
a9c1fe3c46 add dishwasher recipe 2014-06-29 02:59:11 -04:00
Vanessa Ezekowitz
5cd2086998 add washer and dryer recipes 2014-06-29 02:54:16 -04:00
Vanessa Ezekowitz
268d3837e0 add motor and heating element craft items 2014-06-29 02:41:33 -04:00
Vanessa Ezekowitz
38ad778ade move all craftitems to the top of the crafts file 2014-06-29 02:23:03 -04:00
Vanessa Ezekowitz
d69b8392ba add craft recipe for box 2014-06-28 04:30:50 -04:00
Vanessa Ezekowitz
403e0fa5b5 add recipe for towel rod with towel. 2014-06-27 23:00:34 -04:00
Vanessa Ezekowitz
0979109f95 add recipe for fishtank 2014-06-27 18:56:00 -04:00
Vanessa Ezekowitz
638c8d9ac4 Add recipes for steel-, granite-, marble-topped kitchen cabinets.
steel-topped cabinets can use either three default steel ingots in a row
immediately above a cabinet, or the thinnest cut of steelblock slab via
Moreblocks' circular saw, above the cabinet.

granite-topped cabinets require the thinnest cut of technic granite slab.

marble-topped cabinects can use either a marble slab from homedecor
modpack's building_blocks mod, or the thinnest cut of technic marble
slab (but not the marble bricks)
2014-06-27 18:29:08 -04:00
Vanessa Ezekowitz
e03dc0c01e add recipe for chimney 2014-06-27 17:40:38 -04:00
Vanessa Ezekowitz
eb3b05e615 Make default recipes for oven and fridge produce stainless steel
oven and fridge, and then make those produce regular white ones when combined
with two and three portions of white dye, respectively (as enamel).
2014-06-27 17:34:17 -04:00
Vanessa Ezekowitz
f9e4245a05 new alternate no-moreblocks recipes from Zeno
based around a "power crystal" to replace glowglass, basically.
2014-06-18 00:45:45 -04:00
Vanessa Ezekowitz
9be635cb5f change license to LGPL to conform to what's written in the forum post
since forever.

Also clarify it in the copyright message, spread the license file around
a bit, and remove some useless "last changed" dates since they've been
inaccurate for a long time.
2014-06-06 03:26:42 -04:00
Xanthin
e702ef9f13 Fixes to translation. 2014-04-04 09:10:26 -03:00
Vanessa Ezekowitz
e057d357c8 split signs_lib from homedecor, put them into their own separate mods
package the two together as a modpack so that regular homedecor users don't
see a functional change, but others can take signs_lib and use it as a
standalone mod.

also get rid of some *~ files
2014-01-25 12:57:05 -05:00