diff --git a/config/routes.rb b/config/routes.rb
index 3a14c37..32330b7 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -5,6 +5,8 @@ Rails.application.routes.draw do
post "/pop", to: "instance#pop", as: :pop_in_instance
post "/reset", to: "instance#reset", as: :reset_in_instance
post "/auth", to: "instance#authenticate", as: :authenticate_to_instance
+ post "/fairy/mark", to: "fairy#mark", as: :mark_fairy
+ post "/fairy/unmark", to: "fairy#unmark", as: :unmark_fairy
get "/:public_id", to: "instance#show", as: :show_instance
get "up" => "rails/health#show", as: :rails_health_check
diff --git a/data/anemos.toml b/data/anemos.toml
index dad6b0a..9d7f668 100644
--- a/data/anemos.toml
+++ b/data/anemos.toml
@@ -5,6 +5,41 @@ weather = [
["snow", 10]
]
+fairies = [
+ { x = 322, y = 125 },
+ { x = 444, y = 169 },
+ { x = 453, y = 309 },
+ { x = 134, y = 455 },
+ { x = 204, y = 566 },
+ { x = 180, y = 815 },
+ { x = 373, y = 1001 },
+ { x = 384, y = 731 },
+ { x = 349, y = 678 },
+ { x = 424, y = 634 },
+ { x = 567, y = 467 },
+ { x = 656, y = 513 },
+ { x = 675, y = 600 },
+ { x = 577, y = 699 },
+ { x = 808, y = 1107 },
+ { x = 914, y = 1047 },
+ { x = 829, y = 873 },
+ { x = 905, y = 738 },
+ { x = 834, y = 540 },
+ { x = 798, y = 304 },
+ { x = 698, y = 150 },
+ { x = 921, y = 401 },
+ { x = 1056, y = 466 },
+ { x = 1200, y = 543 },
+ { x = 1034, y = 616 },
+ { x = 1140, y = 756 },
+ { x = 1216, y = 862 },
+ { x = 1481, y = 591 },
+ { x = 1438, y = 242 },
+ { x = 1170, y = 161 },
+ { x = 1058, y = 240 },
+ { x = 1204, y = 308 }
+]
+
[[nms]]
name = "Sabotender Corrido"
level = 1
diff --git a/db/migrate/20250310183139_create_instances.rb b/db/migrate/20250310183139_create_instances.rb
index 883ad6c..5057696 100644
--- a/db/migrate/20250310183139_create_instances.rb
+++ b/db/migrate/20250310183139_create_instances.rb
@@ -8,5 +8,7 @@ class CreateInstances < ActiveRecord::Migration[8.0]
t.timestamps
end
+
+ add_index :instances, :public_id
end
end
diff --git a/db/migrate/20250310183912_create_fairies.rb b/db/migrate/20250310183912_create_fairies.rb
index 2898677..0dcd43e 100644
--- a/db/migrate/20250310183912_create_fairies.rb
+++ b/db/migrate/20250310183912_create_fairies.rb
@@ -1,7 +1,7 @@
class CreateFairies < ActiveRecord::Migration[8.0]
def change
create_table :fairies do |t|
- t.integer :location
+ t.string :location
t.boolean :is_despawned
t.boolean :is_suggested
t.references :instance, null: false, foreign_key: true
diff --git a/db/schema.rb b/db/schema.rb
index daf9152..3be31c9 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -15,7 +15,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_03_10_183912) do
enable_extension "pg_catalog.plpgsql"
create_table "fairies", force: :cascade do |t|
- t.integer "location"
+ t.string "location"
t.boolean "is_despawned"
t.boolean "is_suggested"
t.bigint "instance_id", null: false
@@ -31,6 +31,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_03_10_183912) do
t.string "zone"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
+ t.index ["public_id"], name: "index_instances_on_public_id"
end
create_table "pops", force: :cascade do |t|
diff --git a/public/maps/anemos.jpg b/public/maps/anemos.jpg
new file mode 100644
index 0000000..8c03038
Binary files /dev/null and b/public/maps/anemos.jpg differ
diff --git a/public/maps/hydatos.jpg b/public/maps/hydatos.jpg
new file mode 100644
index 0000000..f3bdb2f
Binary files /dev/null and b/public/maps/hydatos.jpg differ
diff --git a/public/maps/pagos.jpg b/public/maps/pagos.jpg
new file mode 100644
index 0000000..226e9d7
Binary files /dev/null and b/public/maps/pagos.jpg differ
diff --git a/public/maps/pyros.jpg b/public/maps/pyros.jpg
new file mode 100644
index 0000000..d6a3a7b
Binary files /dev/null and b/public/maps/pyros.jpg differ
diff --git a/test/controllers/fairy_controller_test.rb b/test/controllers/fairy_controller_test.rb
new file mode 100644
index 0000000..a19a9cb
--- /dev/null
+++ b/test/controllers/fairy_controller_test.rb
@@ -0,0 +1,23 @@
+require "test_helper"
+
+class FairyControllerTest < ActionDispatch::IntegrationTest
+ test "should get mark" do
+ get fairy_mark_url
+ assert_response :success
+ end
+
+ test "should get suggest" do
+ get fairy_suggest_url
+ assert_response :success
+ end
+
+ test "should get unmark" do
+ get fairy_unmark_url
+ assert_response :success
+ end
+
+ test "should get despawn" do
+ get fairy_despawn_url
+ assert_response :success
+ end
+end
diff --git a/test/fixtures/fairies.yml b/test/fixtures/fairies.yml
new file mode 100644
index 0000000..d7a3329
--- /dev/null
+++ b/test/fixtures/fairies.yml
@@ -0,0 +1,11 @@
+# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+# This model initially had no columns defined. If you add columns to the
+# model remove the "{}" from the fixture names and add the columns immediately
+# below each fixture, per the syntax in the comments below
+#
+one: {}
+# column: value
+#
+two: {}
+# column: value
diff --git a/test/models/fairy_test.rb b/test/models/fairy_test.rb
new file mode 100644
index 0000000..6585abf
--- /dev/null
+++ b/test/models/fairy_test.rb
@@ -0,0 +1,7 @@
+require "test_helper"
+
+class FairyTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end