mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Replaced mine and quarry emojis
This commit is contained in:
parent
a1393a26d7
commit
84ecc634c4
2 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ export function getMineHelp() {
|
||||||
<p>
|
<p>
|
||||||
Welcome to Planar Pioneers! Your job is to gather resources and eventually
|
Welcome to Planar Pioneers! Your job is to gather resources and eventually
|
||||||
explore and conquer increasingly difficult "planes", which are like alien
|
explore and conquer increasingly difficult "planes", which are like alien
|
||||||
worlds. To start you'll use the mine (🪨) machine to gather resources.
|
worlds. To start you'll use the mine (⛏️) machine to gather resources.
|
||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
|
@ -103,7 +103,7 @@ export function getQuarryHelp() {
|
||||||
jsx(() => (
|
jsx(() => (
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
You've created the Quarry (⛏️)! This machine let's you gather specified
|
You've created the Quarry (⛰️)! This machine let's you gather specified
|
||||||
resources. Unlike the mine, this machine will always output the same resources.
|
resources. Unlike the mine, this machine will always output the same resources.
|
||||||
However, rarer resources will take longer to gather.
|
However, rarer resources will take longer to gather.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -58,7 +58,7 @@ import { exponentialFormat } from "util/bignum";
|
||||||
export const mine = {
|
export const mine = {
|
||||||
shape: Shape.Diamond,
|
shape: Shape.Diamond,
|
||||||
size: 50,
|
size: 50,
|
||||||
title: "🪨",
|
title: "⛏️",
|
||||||
label: node =>
|
label: node =>
|
||||||
node === main.board.selectedNode.value
|
node === main.board.selectedNode.value
|
||||||
? { text: "Mining" }
|
? { text: "Mining" }
|
||||||
|
@ -352,7 +352,7 @@ export const dowsing = {
|
||||||
export const quarry = {
|
export const quarry = {
|
||||||
shape: Shape.Diamond,
|
shape: Shape.Diamond,
|
||||||
size: 50,
|
size: 50,
|
||||||
title: "⛏️",
|
title: "⛰️",
|
||||||
label: node => {
|
label: node => {
|
||||||
if (node === main.board.selectedNode.value) {
|
if (node === main.board.selectedNode.value) {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue