text cleanup

This commit is contained in:
Mashy 2019-11-29 09:41:09 +10:00
parent 75a1c1b3c4
commit 798b68cff1
2 changed files with 14 additions and 22 deletions

View File

@ -47,8 +47,7 @@ module.exports = {
}, },
Refund: { Refund: {
item: 'Refund', item: 'Refund',
description: <p>Refund items refunding the listed cost of the item.<br /> description: 'Refund the listed cost of a single selected item from the stash.',
Click to enable and then click the item to Refund.</p>,
}, },
refill: { refill: {
item: 'REFILL', item: 'REFILL',

View File

@ -118,7 +118,7 @@ function tutorialStage(tutorial, clearTutorial, instance) {
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> Welcome to the vbox phase tutorial.</p> <p> Welcome to the vbox phase tutorial.</p>
<p> Colours are used to create powerful combinations with base items. </p> <p> Colours are used to create powerful combinations with base items. </p>
<p> Buy the two colours from the vbox to continue. </p> <p> Buy the two colours from the store to continue. </p>
</div> </div>
); );
} }
@ -127,11 +127,8 @@ function tutorialStage(tutorial, clearTutorial, instance) {
return ( return (
<div class='info-item'> <div class='info-item'>
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> In a normal game you start with three base <b>Attack</b> skill items. </p> <p> You start the game with the base <b>Attack</b> skill item. </p>
<p> The <b>Attack</b> item can be combined with <b>colours</b> to create a new skill. </p> <p> Highlight all three items then click combine.</p>
<p> Select the Attack item along with two colours. <br />
Once selected press <b>COMBINE</b> to create a new combo.
</p>
</div> </div>
); );
} }
@ -143,8 +140,8 @@ function tutorialStage(tutorial, clearTutorial, instance) {
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> The first construct on your team is <b>{constructOne}</b>. </p> <p> The first construct on your team is <b>{constructOne}</b>. </p>
<p> Skill items can be equipped to your constructs to be used in the combat phase. </p> <p> Skill items can be equipped to your constructs to be used in the combat phase. </p>
<p> Click the newly combined skill from the stash. <br /> <p> Click your new skill from the stash. <br />
Once selected click the construct <b>SKILL</b> slot to equip the skill. </p> Once selected click the flashing <b>SKILL</b> slot to equip the skill. </p>
</div> </div>
); );
} }
@ -155,7 +152,7 @@ function tutorialStage(tutorial, clearTutorial, instance) {
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> You can also buy specialisation items for your constructs. <br /> <p> You can also buy specialisation items for your constructs. <br />
Specialisation items increase stats including power, speed and life. </p> Specialisation items increase stats including power, speed and life. </p>
<p> Buy the specialisation item from the vbox to continue. </p> <p> Buy the specialisation item from the store to continue. </p>
</div> </div>
); );
} }
@ -166,8 +163,8 @@ function tutorialStage(tutorial, clearTutorial, instance) {
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> Equipping specialisation items will increase the stats of your constructs.</p> <p> Equipping specialisation items will increase the stats of your constructs.</p>
<p> These can also be combined with colours for further specialisation. </p> <p> These can also be combined with colours for further specialisation. </p>
<p> Click the specialisation item from the stash.<br /> <p> Click the specialisation item in the stash.<br />
Once selected click the construct <b>SPEC</b> slot to equip the specialisation. </p> Once selected click the flashing <b>SPEC</b> slot to equip the specialisation. </p>
</div> </div>
); );
} }
@ -190,13 +187,11 @@ function tutorialStage(tutorial, clearTutorial, instance) {
return ( return (
<div class='info-item'> <div class='info-item'>
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p> Each round you start with a vbox full of different skills, specs and colours. </p> <p> Each round you start with 30 bits and a store full of different skills, specs and colours. </p>
<p> Bits are your currency for buying skills, specs and colours from the vbox. <br /> <p> Bits are your currency for buying items. <br />
Colours cost 1b, Skills cost 2b and specs cost 3b. <br /> You can refill the store by pressing the refill button for 2b. <br />
You can refill the vbox by pressing the refill button for 2b. <br />
After each combat round you get more bits to further upgrade your team.
</p> </p>
<p> Press the <b>REFILL</b> button to get a new vbox and continue. </p> <p> Press the <b>REFILL</b> button to buy new items. </p>
</div> </div>
); );
} }
@ -211,9 +206,7 @@ function tutorialStage(tutorial, clearTutorial, instance) {
<h2>Tutorial</h2> <h2>Tutorial</h2>
<p>That completes the VBOX Tutorial.</p> <p>That completes the VBOX Tutorial.</p>
<p>Press <b>READY</b> to progress to the <b>GAME PHASE</b> <br /> <p>Press <b>READY</b> to progress to the <b>GAME PHASE</b> <br />
or continue creating new items to strengthen your constructs further</p> You can continue creating new items to upgrade your constructs further. </p>
<p>You can unequip skills and specs back into the inventory by double clicking. <br />
Refund can be used to refund the cost of items in your inventory. </p>
</div> </div>
); );
} }