Campfire Materials

From PZwiki
Revision as of 11:07, 19 November 2013 by Minic90 (talk | contribs) (→‎Crafting: replaced recipe)

Template:Items

Use

Using a campfire kit will place a campfire in any outdoor location. The campfire will be made but no fire will be in the pit as of the moment.

There are two ways to light a fire.

1. Take a screwdriver and a plank to make a Perched wood. Then take a sturdy stick (saw and plank) and combine with the perched wood to make a kindling. The kindling can then be used as a source to start the fire.

2. pour the contents of a gas can on the fire and light with a lighter

Upon lighting the fire, a weak fire will appear. If a player adds a log, the fire's will grow stronger. Going near an active fire pit will generate some light and will warm up the character. Furthermore, it can be used to cook certain foods.

A fire can be put out by pouring water on it or waiting for rain to douse it.

Zombies are attracted to fire.

Crafting

Name Recipe Description












Coding

item Campfire Kit

	{
		Type				=		Normal,
		DisplayName			=	 Campfire materials,
		Icon				=		TZ_CampfireKitWood,
		Weight				=		2.0,
	}

recipe Make Campfire Kit
	{
 		Plank = 3,
 		RippedSheets/Sheet/Book/Magazine/Newspaper,
 
 		Result:CampfireKit,
 		Time:50.0,
 	}     
  
  recipe GetSteelAndFlint
	{
		SteelKnuckle,
		Flint,

		Result:SteelAndFlint,
		Time:2.0,
	}
  
  recipe Make Kindling
  {
    WoodenStick,
		PercedWood,

		Result:FireWoodKit,
		Time:80.0,
  }
  
  recipe Drill Plank
  {
		Plank,
		keep Screwdriver,

		Result:PercedWood,
		Time:40.0,
  }
  
  recipe Make Wooden Stick
  {
    Plank,
		keep Saw,

		Result:WoodenStick=2,
		Time:50.0,
  }
  
  recipe Make Tent Kit
  {
   		Sheet = 4,
		TentPeg = 4,
		WoodenStick = 2,

		Result:CampingTentKit,
		Time:120.0,
  }

History

Alpha
RC 2.9 Added to the Vanilla game.

See Also


Template:Navbox/Construction