text changes sry not sry
This commit is contained in:
parent
dedada5b14
commit
7b40316d9b
@ -21,14 +21,14 @@ function InfoComponent(args) {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h2>VBOX phase</h2>
|
<h2>VBOX phase</h2>
|
||||||
<p>strengthen and specialise your constructs by equipping items to them.</p>
|
<p>Strengthen and specialise your constructs by equipping items to them.</p>
|
||||||
<p>double click to purchase items in the <b>VBOX</b> and move them to your <b>INVENTORY</b>.</p>
|
<p>Double click to purchase items in the <b>VBOX</b> and move them to your <b>INVENTORY</b>.</p>
|
||||||
<p>
|
<p>
|
||||||
combine a <b>SKILL</b> or <b>SPEC</b> with 2 <b>COLOURS</b> to create an item.<br />
|
Combine a <b>SKILL</b> or <b>SPEC</b> with 2 <b>COLOURS</b> to create an item.<br />
|
||||||
combine <b>3 of the same item</b> to upgrade it.<br />
|
Combine <b>3 of the same item</b> to upgrade it.<br />
|
||||||
click an item and then click a construct to <b>equip</b> that item to it.<br />
|
Click an item and then click a construct to <b>equip</b> that item to it.<br />
|
||||||
</p>
|
</p>
|
||||||
<p>click the <b>READY</b> button for the <b>GAME PHASE</b>.</p>
|
<p>Click the <b>READY</b> button for the <b>GAME PHASE</b>.</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -60,12 +60,15 @@ function Play(args) {
|
|||||||
|
|
||||||
if (!shop) return false;
|
if (!shop) return false;
|
||||||
|
|
||||||
const useMtx = (item, i) => (
|
const useMtx = (item, i) => {
|
||||||
|
const price = item === 'Rename' ? 5 : 1;
|
||||||
|
return (
|
||||||
<figure key={i} onClick={() => setMtxActive(item)} >
|
<figure key={i} onClick={() => setMtxActive(item)} >
|
||||||
<figcaption>{item}</figcaption>
|
<figcaption>{item}</figcaption>
|
||||||
<button disabled={account.balance === 0}>¤1</button>
|
<button disabled={account.balance === 0}>¤{price}</button>
|
||||||
</figure>
|
</figure>
|
||||||
);
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const availableMtx = (item, i) => (
|
const availableMtx = (item, i) => (
|
||||||
<figure key={i} onClick={() => mtxBuy(item)} >
|
<figure key={i} onClick={() => mtxBuy(item)} >
|
||||||
@ -87,7 +90,6 @@ function Play(args) {
|
|||||||
Subscribe
|
Subscribe
|
||||||
</button>;
|
</button>;
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section class="top">
|
<section class="top">
|
||||||
<div class="news">
|
<div class="news">
|
||||||
|
|||||||
@ -27,21 +27,21 @@ function Shop(args) {
|
|||||||
return (
|
return (
|
||||||
<section class="top">
|
<section class="top">
|
||||||
<div class="news">
|
<div class="news">
|
||||||
<h1>support the game</h1>
|
<h1>Support the game</h1>
|
||||||
<p>
|
<p>
|
||||||
<b>credits</b> are in game currency that can be used to purchase:
|
<b>Credits</b> are in game currency used to change your team appearance:
|
||||||
<ul>
|
<ul>
|
||||||
<li>img sets</li>
|
<li>Image sets</li>
|
||||||
<li>construct renames</li>
|
<li>Reroll construct image from owned sets </li>
|
||||||
<li>new constructs</li>
|
<li>Construct renames</li>
|
||||||
|
<li>New constructs</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<b>subscriptions</b> grant extra benefits:
|
<b>Subscriptions</b> grant extra benefits:
|
||||||
<ul>
|
<ul>
|
||||||
<li>¤150 per month</li>
|
<li>¤150 per month</li>
|
||||||
<li>chat wheel (soon ™)</li>
|
<li>More community features in the future including account icons and chat wheel</li>
|
||||||
<li>account icons (soon ™)</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -51,17 +51,16 @@ function Welcome() {
|
|||||||
<section>
|
<section>
|
||||||
<div class="news">
|
<div class="news">
|
||||||
<p>
|
<p>
|
||||||
mnml is a turn-based 1v1 strategy game in an abstract setting.<br />
|
Welcome to mnml.
|
||||||
outplay your opponents by building your team of 3 constructs from a shifting meta of skills, effects and specialisations.<br />
|
</p>
|
||||||
|
<p> Turn-based 1v1 strategy game in an abstract setting. </p>
|
||||||
|
<p>
|
||||||
|
Build a unique team of 3 constructs from a range of skills and specialisations.<br />
|
||||||
|
Outplay your opponents by adapting in an always shifting meta. <br />
|
||||||
|
Simple rules, complex interactions and unique mechanics.<br />
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
simple rules, complex interactions, simultaneous turns to increase the pace, and a unique speed mechanic;<br />
|
Free to play, no pay to win. Register to start playing.<br />
|
||||||
mnml is a tactical game unlike any other.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
free to play<br />
|
|
||||||
no email required<br />
|
|
||||||
glhf
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{pageEl()}
|
{pageEl()}
|
||||||
|
|||||||
@ -26,11 +26,11 @@ module.exports = {
|
|||||||
INFO: {
|
INFO: {
|
||||||
vbox: {
|
vbox: {
|
||||||
item: 'VBOX',
|
item: 'VBOX',
|
||||||
description: <p><b>ITEMS</b> that are available to buy.<br />the <b>VBOX</b> is refilled every round.<br />click <b>REFILL</b> at the bottom to purchase a refill. </p>,
|
description: <p><b>ITEMS</b> that are available to buy.<br />The <b>VBOX</b> is refilled every round.<br />Click <b>REFILL</b> at the bottom to purchase a refill. </p>,
|
||||||
},
|
},
|
||||||
inventory: {
|
inventory: {
|
||||||
item: 'INVENTORY',
|
item: 'INVENTORY',
|
||||||
description: <p>holds <b>ITEMS</b><br /><b>ITEMS</b> carry over each round.</p>,
|
description: <p>Holds <b>ITEMS</b><br /><b>ITEMS</b> carry over each round.</p>,
|
||||||
},
|
},
|
||||||
bits: {
|
bits: {
|
||||||
item: 'BITS',
|
item: 'BITS',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user