Campfire Materials: Difference between revisions

From PZwiki
No edit summary
m (→‎Crafting: replaced recipe)
Line 20: Line 20:


==Crafting==
==Crafting==
To craft a campfire kit you simply use 3 [[Wooden Plank]]s and 1x [[bandage]], [[sheet]], [[book]], [[magazine]], or [[newspaper]].
{| class="wikitable sortable" style="text-align:center;"
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description


{| class="wikitable" width="550" style="text-align:center;"
{{RecipeLookup|4009}}
|-
! Ingredients || Output
|-
| 3x [[Wooden Plank]]s[[File:Plank.png|24px]] + 1x [[bandage]] [[File:Rag.png|24px]], [[sheet]] [[File:sheet.png|24px]], a [[book]] [[File:Book.png|24px]], a [[magazine]] [[File:Magazine.png|24px]],'''''OR''''' a [[newspaper]] [[File:Newspaper.png|24px]]|| [[Campfire Kit]][[File:Campfire kit.png|32px]]
|}
|}
==Coding==
==Coding==



Revision as of 11:07, 19 November 2013

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