PC Mbridge material

Umbrella

Refugee
Hi,

In the materials.xml file, I can see "bridge" material with very high structural integrity:

- Mbridge_wood: 200 / 5 = 40 (glue/mass = SI)

- Mbridge_concrete: 40/10 = 40

etc...

The SI is much higher than the wood/concrete material (respectively wood: 40/5=8 and concrete=12). I guess they are used for bridges generated on the map.

My question is: can we craft (or collect and place somewhere else) any block with these materials ?

Thank you

 
Last edited by a moderator:
If you want a template for a modlet here is one of mine.

(say if you need more to start)

Code:
<configs>
<append xpath="/recipes">
	<recipe name="+SelfUpgradingSteelframe" count="1" craft_time = "30" >
		<ingredient name="rebarFrameBlock" count="1"/>
		<ingredient name="resourceConcreteMix" count="12"/>			
		<ingredient name="resourceForgedSteel" count="12"/>						
	</recipe>
	<recipe name="pouredRConcreteBlock" count="1" craft_time = "30" >
		<ingredient name="rebarFrameBlock" count="1"/>
		<ingredient name="resourceConcreteMix" count="12"/>								
	</recipe>		
</append>
</configs>
 
Back
Top