Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial work-in-progress on editing pass #13

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions AdvancedRocketry/blocks/ChemicalReactor.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Chemical Reactor';

$imageDemoName = 'chemicalReactor_demo.png';
//USE <p></p> to make a new paragraph
$description1 = '<p>The Chemical Reactor is a multi-block construction which processes fluids, most commonly hydrogen and oxygen, and creates outputs. Hydrogen and Oxygen, typically pumped in from the <a href="Electrolyser.php">Electrolyser</a>, create Rocket Fuel. The other simple ecipe it can do by default is to make a large amount of bone mean per bone, 5, using a small amount of nitrogen in the process and thereby almost doubling bonemeal efficiency. Use the <a href="/items/holoProjector.php">Holo-Projector</a> to complete the structure, then right click the Chemical Reactor machine block.</p><p>In additon to Rocket Fuel, it accepts item inputs as well, such as adding the airtight seal enchantment to armor, allowing you a basic space suit\'s tank and vacuum-protection abilities. <a href="Coils.php".php">Coils</a> and <a href="/Motors.php">Motors</a> can be used to increase speed and effeciency. ';

//USE <p></p> to make a new paragraph
$description1 = '<p>The Chemical Reactor is a multi-block construction which processes fluids, most commonly hydrogen and oxygen, and creates outputs. Hydrogen and Oxygen, typically pumped in from the <a href="Electrolyser.php">Electrolyser</a>, create Rocket Fuel. The other simple recipe it can do by default is to make a large amount of bone mean per bone, 5, using a small amount of nitrogen in the process and thereby almost doubling bonemeal efficiency. Use the <a href="/items/holoProjector.php">Holo-Projector</a> to complete the structure, then right click the Chemical Reactor machine block.</p><p>In additon to Rocket Fuel, it accepts item inputs as well, such as adding the airtight seal enchantment to armor, allowing you to add a basic space suit\'s tank and vacuum-protection abilities. <a href="Coils.php".php">Coils</a> and <a href="/Motors.php">Motors</a> can be used to increase speed and effeciency. ';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';

$optionalSection='';

$sidebarImage = '';
$hardness = '';
$blastResistance = '';
Expand All @@ -42,4 +42,4 @@
$other ='';

include($_SERVER["DOCUMENT_ROOT"].'/AdvancedRocketry/template.php');
?>
?>
29 changes: 14 additions & 15 deletions AdvancedRocketry/blocks/Coils.php
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Coils';

$imageDemoName = 'coil_demo.jpg';

//USE <p></p> to make a new paragraph
$description1 = '<p>Coils are used in the construction of multiblock machines throughout the mod. Coils also come in several teirs, higher teir coils being more powerful, but more expensive to make.</p>
<p>The primary usage of coils is in the <a href="ElectricArcFurnace.php">Electric Arc Furnace</a>. Using higher teir coils in some machines can decrease the amount of time required for a recipe. Like the motors, the speed increases stack multiplicitivly.</p>';


//USE <p></p> to make a new paragraph
$description1 = '<p>Coils are used in the construction of multiblock machines throughout the mod (for example, the <a href="ElectricArcFurnace.php">Electric Arc Furnace</a>). Coils also come in several tiers, higher tier coils being more powerful, but more expensive to make. Using higher tier coils in some machines can decrease the amount of time required for a recipe. Like the motors, the speed increases stack multiplicitivly.</p>';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';
$descriptionGUI ='';

$sidebarImage = 'coil_block.png';

$hardness = '3';
Expand All @@ -41,4 +40,4 @@
$other = '<br><b>Other Coils</b><br>Speed Multiplier: 1x<hr><b>Gold Coil</b><br>Speed Multiplier: 1.11x<hr><b>Aluminum Coil</b><br>Speed Multiplier: 1.25x<hr><b>Titanium Coil</b><br>Speed Multiplier: 1.33x<hr><b>Iridium Coil</b><br>Speed Multiplier: 2x<hr><p>Note: The modifiers are multiplicative, so if an Arc Furnace had 3 Iridium coils the actual speed boost would be 8x (2x*2x*2x).</p>';

include($_SERVER["DOCUMENT_ROOT"].'/AdvancedRocketry/template.php');
?>
?>
28 changes: 14 additions & 14 deletions AdvancedRocketry/blocks/Crystallizer.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Crystallizer';

$imageDemoName = 'crystallizer_demo.png';
//USE <p></p> to make a new paragraph
$description1 = '<p>The Crystallizer is a multi-block construction which allows for creation of dilithium crystals and silicon boule.<p>Items are inserted via the input hatch and the goods can be retrieved from the output hatch. Use the <a href="/items/holoProjector.php">Holo-Projector</a> to complete the structure, then right click the Crystallizer machine block.</p><p> Use higher tier <a href="Coils.php".php">Coils</a> and <a href="/Motors.php">Motors</a> to increase performance. Despite the animation, the crystalliser only processes one set of inputs at a time, not three. You\'ll need a crystalliser if you want to make any of the more advanced circuits or to make satellite sensors, both of which need silicon wafers to complete.</p>';

//USE <p></p> to make a new paragraph
$description1 = '<p>The Crystallizer is a multi-block construction which allows for creation of dilithium crystals and silicon boule.</p><p>Inputs are inserted via the input hatch and the output items can be retrieved from the output hatch. Use the <a href="/items/holoProjector.php">Holo-Projector</a> to complete the structure, then right click the Crystallizer machine block.</p><p>Use higher tier <a href="Coils.php".php">Coils</a> and <a href="/Motors.php">Motors</a> to increase performance. Despite the animation, the crystalliser only processes one set of inputs at a time, not three. You\'ll need a crystalliser if you want to make any of the more advanced circuits or to make satellite sensors, both of which need silicon wafers to complete.</p>';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';

$optionalSection='';

$sidebarImage = '';
$hardness = '';
$blastResistance = '';
Expand All @@ -42,4 +42,4 @@
$other ='';

include($_SERVER["DOCUMENT_ROOT"].'/AdvancedRocketry/template.php');
?>
?>
35 changes: 16 additions & 19 deletions AdvancedRocketry/blocks/ElectricArcFurnace.php
Original file line number Diff line number Diff line change
@@ -1,39 +1,36 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Electric Arc Furnace';

$imageDemoName = 'electricArcFurnace_demo.jpg';

//USE <p></p> to make a new paragraph
$description1 = '<p>The Electric Arc Furnace is a multiblock machine that uses electricity to raise the internal temperatures to extreme levels in order to melt and smelt specialised materials.
</p>
<p>
In Advanced Rocketry the Electric Arc Furnace is primarily used to smelt steel, titanium, silicon, and a few other alloys. The structure itself can have multiple inputs and outputs allowing for easier automation.
Steel takes a minute with copper coils, a silcion ingot 10 minutes. Because of the relative slow operation of silicon production, it is recommended to build multiple EAFs, which is feasible due to the small amount of resources needed for the bricks. Silicon\'s processing power is simply 1 RF/t, allowing even a single solar panel to run a blast furnace making silicon. More advanced alloys, such as TiAL or TiIr, will require more time and greater RF/t to smelt, as will the production of Titanium ingots from Rutile ore, which requires a small amount of RF and a short time.
</p>

//USE <p></p> to make a new paragraph
$description1 = '<p>The Electric Arc Furnace is a multiblock machine that uses electricity to raise the internal temperatures to extreme levels in order to melt and smelt specialised materials.</p>
<p>In Advanced Rocketry the Electric Arc Furnace is primarily used to smelt steel, titanium, silicon, and a few other alloys. The structure itself can have multiple inputs and outputs allowing for easier automation.</p>
<p>Steel takes a minute with copper coils, a silcion ingot 10 minutes. Because of the relative slow operation of silicon production, it is recommended to build multiple EAFs, which is feasible due to the small amount of resources needed for the bricks. Silicon\'s processing power is simply 1 RF/t, allowing even a single solar panel to run a blast furnace making silicon. More advanced alloys, such as TiAL or TiIr, will require more time and greater RF/t to smelt, as will the production of Titanium ingots from Rutile ore, which requires a small amount of RF and a short time.</p>
<p>The blast furnace is initially fairly slow, but using more advanced <a href="Coils.php">coils</a> can increase the speed at which it operates.</p>';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';
$descriptionGUI ='';

$sidebarImage = 'electricArcFurnace_block.png';

$hardness = '2';
Expand All @@ -46,4 +43,4 @@
$other ='';

include($_SERVER["DOCUMENT_ROOT"].'/AdvancedRocketry/template.php');
?>>
?>>
30 changes: 14 additions & 16 deletions AdvancedRocketry/blocks/ForceField.php
Original file line number Diff line number Diff line change
@@ -1,36 +1,34 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Force Field Projector';

$imageDemoName = 'forceField_demo.jpg';

//USE <p></p> to make a new paragraph
$description1 = '<p>When activated with a redstone signal a forcefield will slowly emerge from the front face of the block. This forcefield cannot be broken by normal means. The forcefield retracts when the redstone signal is removed. The forcefield blocks are airtight and, as such, can be used to seal stations and bases.
</p>
<p>
The forcefield projector can project a field up to 32 blocks away. The field stops extending as soon as it hits a non-replacable block.</p>';


//USE <p></p> to make a new paragraph
$description1 = '<p>When activated with a redstone signal a forcefield will slowly emerge from the front face of the block. This forcefield cannot be broken by normal means. The forcefield retracts when the redstone signal is removed. The forcefield blocks are airtight and, as such, can be used to seal stations and bases.</p>
<p>The forcefield projector can project a field up to 32 blocks away. The field stops extending as soon as it hits a non-replacable block.</p>';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';
$descriptionGUI ='';

$sidebarImage = 'forceField_block.png';

$hardness = '3';
Expand Down
38 changes: 18 additions & 20 deletions AdvancedRocketry/blocks/FuelTank.php
Original file line number Diff line number Diff line change
@@ -1,38 +1,36 @@
<?php
/* HOW TO USE THIS TEMPLATE
If you are unsure how to use this, please see any of the other pages for a reference.
If you are unsure how to use this, please see any of the other pages for a reference.

Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.
Descriptions can include any HTML tags. Please link to other pages when you reference a block or item the first time.

<a href="Cables.php">data pipes</a>

Please follow these naming conventions when submitting images for blocks:

PAGE IMAGE = nameOfBlock_demo.png
SIDE BAR IMAGE = nameOfBlock_block.png
ICON IMAGE FOR LIST PAGE = nameOfBlock_icon.png

Place images in the img folder. Be sure to update blocks/index.html with a link to your block page.
*/

*/

//NAME OF BLOCK
$title = 'Fuel Tank';

$imageDemoName = 'fuelTank_demo.jpg';

//USE <p></p> to make a new paragraph
$description1 = '<p>Fuel Tanks are cylindrical
containers used to store rocket fuel onboard rockets. Building fuel tanks into a rocket will increase the <a href="RocketAssemblingMachine.php#rocketStats">fuel storage capacity</a> of the rocket.</p>
<p>If a fuel tank is placed on top of or underneath another fuel tank, then the tanks will merge to become one larger tank.</p>
<p>Fuel tanks cannot merge sideways or diagonally.</p>
<p>If multiple fuel tanks are present on the rocket the fuel tanks will provide the same amount of storage
as one large fuel tank.</p><p>There are no penalties for number of fuel tanks or distance between a fuel tank and an <a href="RocketEngine.php">engine</a>.</p>';


//USE <p></p> to make a new paragraph
$description1 = '<p>Fuel Tanks are cylindrical containers used to store rocket fuel onboard rockets. Building fuel tanks into a rocket will increase the <a href="RocketAssemblingMachine.php#rocketStats">fuel storage capacity</a> of the rocket.</p>
<p>Multiple tanks stacked on top of one another will merge to become one larger tank. Fuel tanks cannot merge sideways or diagonally.</p>
<p>A rocket with multiple, separate, fuel tanks will provide the same amount of storage as one large fuel tank.</p>
<p>There are no penalties for number of fuel tanks or distance between a fuel tank and an <a href="RocketEngine.php">engine</a>.</p>';

//FILL IN THIS PART IF THE BLOCK HAS A GUI
$imageGUI = '';
$descriptionGUI ='';
$descriptionGUI ='';

$sidebarImage = 'fuelTank_block.png';
$hardness = '2';
$blastResistance = '0';
Expand All @@ -41,7 +39,7 @@
$sealable = 'NO';
$tileEntity = 'YES';
$multiBlock = '';
$other ='<b>Teir 1</b><br />Fuel Storage: 500mb';
$other ='<b>Tier 1</b><br />Fuel Storage: 500mb';

include($_SERVER["DOCUMENT_ROOT"].'/AdvancedRocketry/template.php');
?>
?>
Loading