aboutsummaryrefslogtreecommitdiff
path: root/src/sim/static/items.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/static/items.js')
-rw-r--r--src/sim/static/items.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/sim/static/items.js b/src/sim/static/items.js
new file mode 100644
index 0000000..40f73f1
--- /dev/null
+++ b/src/sim/static/items.js
@@ -0,0 +1,21 @@
+tileMap = {
+ 0: Mountain,
+ 1: Forest,
+ 2: Town,
+}
+
+function getScout() {
+ return {
+ id: 1,
+ text: "scout",
+ cost: 2,
+ callback: function () {
+ var type = tileMap[Math.floor(Math.random() * 3)]
+ var tile = new type()
+ status = `Your scout found a ${tile.name}. Click to place it.`
+ return {
+ tile: tile
+ }
+ }
+ }
+} \ No newline at end of file