about summary refs log tree commit diff stats
path: root/data/maps/the_relentless/rooms/Left Room.txtpb
blob: 4db0075ecb889bf135db05f3f3258448d7d3e6d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: "Left Room"
panels {
  name: "HIDE"
  path: "Panels/Room_1/panel_1"
  clue: "hide"
  answer: "unmask"
  symbols: SUN
}
panels {
  name: "LEFT"
  path: "Panels/Room_1/panel_4"
  clue: "left"
  answer: "wrong"
  symbols: SUN
}
panels {
  name: "MORE"
  path: "Panels/Room_1/panel_7"
  clue: "more"
  answer: "your"
  symbols: ZERO
}
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20171011015648) do

  create_table "pokeviewer_abilities", force: :cascade do |t|
    t.string "name", limit: 191, null: false
    t.string "description", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["name"], name: "index_pokeviewer_abilities_on_name", unique: true
  end

  create_table "pokeviewer_gift_ribbons", force: :cascade do |t|
    t.string "description", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end

  create_table "pokeviewer_items", force: :cascade do |t|
    t.string "name", null: false
    t.boolean "tm", default: false, null: false
    t.integer "move_id"
    t.string "rs_description"
    t.string "frlg_description"
    t.string "emerald_description"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["move_id"], name: "index_pokeviewer_items_on_move_id"
  end

  create_table "pokeviewer_locations", force: :cascade do |t|
    t.string "name", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end

  create_table "pokeviewer_moves", force: :cascade do |t|
    t.string "name", limit: 191, null: false
    t.integer "pp", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "move_type", null: false
    t.string "rs_description", null: false
    t.string "frlg_description", null: false
    t.string "emerald_description"
    t.index ["name"], name: "index_pokeviewer_moves_on_name", unique: true
  end

  create_table "pokeviewer_pokemon", force: :cascade do |t|
    t.string "uuid", limit: 191, null: false
    t.integer "species_id", null: false
    t.integer "trainer_id"
    t.string "key", limit: 191
    t.string "ot_name", null: false
    t.integer "ot_number", null: false
    t.string "met_type", null: false
    t.integer "met_level"
    t.boolean "shiny", default: false, null: false
    t.string "nature", null: false
    t.string "gender", null: false
    t.boolean "second_ability", null: false
    t.string "unown_letter", limit: 1
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "ot_gender", default: "", null: false
    t.integer "box"
    t.integer "slot"
    t.integer "location_id"
    t.string "pokeball", null: false
    t.index ["key"], name: "index_pokeviewer_pokemon_on_key", unique: true
    t.index ["species_id"], name: "index_pokeviewer_pokemon_on_species_id"
    t.index ["trainer_id"], name: "index_pokeviewer_pokemon_on_trainer_id"
    t.index ["uuid"], name: "index_pokeviewer_pokemon_on_uuid", unique: true
  end

  create_table "pokeviewer_revisions", force: :cascade do |t|
    t.integer "pokemon_id", null: false
    t.integer "sequential_id", null: false
    t.string "nickname", null: false
    t.integer "experience", null: false
    t.integer "level", null: false
    t.integer "hp", null: false
    t.integer "attack", null: false
    t.integer "defense", null: false
    t.integer "special_attack", null: false
    t.integer "special_defense", null: false
    t.integer "speed", null: false
    t.integer "coolness", null: false
    t.integer "beauty", null: false
    t.integer "cuteness", null: false
    t.integer "smartness", null: false
    t.integer "toughness", null: false
    t.integer "sheen", null: false
    t.integer "item_id"
    t.integer "move_1_id", null: false
    t.integer "move_2_id"
    t.integer "move_3_id"
    t.integer "move_4_id"
    t.integer "move_1_pp_bonuses", default: 0, null: false
    t.integer "move_2_pp_bonuses", default: 0, null: false
    t.integer "move_3_pp_bonuses", default: 0, null: false
    t.integer "move_4_pp_bonuses", default: 0, null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.integer "cool_ribbons", default: 0, null: false
    t.integer "beauty_ribbons", default: 0, null: false
    t.integer "cute_ribbons", default: 0, null: false
    t.integer "smart_ribbons", default: 0, null: false
    t.integer "tough_ribbons", default: 0, null: false
    t.boolean "champion_ribbon", default: false
    t.boolean "winning_ribbon", default: false
    t.boolean "victory_ribbon", default: false
    t.boolean "artist_ribbon", default: false
    t.boolean "effort_ribbon", default: false
    t.boolean "marine_ribbon", default: false
    t.boolean "land_ribbon", default: false
    t.boolean "sky_ribbon", default: false
    t.boolean "country_ribbon", default: false
    t.boolean "national_ribbon", default: false
    t.boolean "earth_ribbon", default: false
    t.boolean "world_ribbon", default: false
    t.index ["move_1_id"], name: "index_pokeviewer_revisions_on_move_1_id"
    t.index ["move_2_id"], name: "index_pokeviewer_revisions_on_move_2_id"
    t.index ["move_3_id"], name: "index_pokeviewer_revisions_on_move_3_id"
    t.index ["move_4_id"], name: "index_pokeviewer_revisions_on_move_4_id"
    t.index ["pokemon_id", "sequential_id"], name: "index_pokeviewer_revisions_on_pokemon_id_and_sequential_id", unique: true
    t.index ["pokemon_id"], name: "index_pokeviewer_revisions_on_pokemon_id"
  end

  create_table "pokeviewer_species", force: :cascade do |t|
    t.string "name", limit: 191, null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "type_1", null: false
    t.string "type_2"
    t.integer "ability_1_id", null: false
    t.integer "ability_2_id"
    t.index ["name"], name: "index_pokeviewer_species_on_name", unique: true
  end

  create_table "pokeviewer_trainers", force: :cascade do |t|
    t.string "game", null: false
    t.string "name", limit: 191, null: false
    t.integer "number", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.integer "marine_ribbon_id"
    t.integer "land_ribbon_id"
    t.integer "sky_ribbon_id"
    t.integer "country_ribbon_id"
    t.integer "national_ribbon_id"
    t.integer "earth_ribbon_id"
    t.integer "world_ribbon_id"
    t.string "box_1_name", null: false
    t.string "box_2_name", null: false
    t.string "box_3_name", null: false
    t.string "box_4_name", null: false
    t.string "box_5_name", null: false
    t.string "box_6_name", null: false
    t.string "box_7_name", null: false
    t.string "box_8_name", null: false
    t.string "box_9_name", null: false
    t.string "box_10_name", null: false
    t.string "box_11_name", null: false
    t.string "box_12_name", null: false
    t.string "box_13_name", null: false
    t.string "box_14_name", null: false
    t.index ["country_ribbon_id"], name: "index_pokeviewer_trainers_on_country_ribbon_id"
    t.index ["earth_ribbon_id"], name: "index_pokeviewer_trainers_on_earth_ribbon_id"
    t.index ["land_ribbon_id"], name: "index_pokeviewer_trainers_on_land_ribbon_id"
    t.index ["marine_ribbon_id"], name: "index_pokeviewer_trainers_on_marine_ribbon_id"
    t.index ["name", "number"], name: "index_pokeviewer_trainers_on_name_and_number", unique: true
    t.index ["national_ribbon_id"], name: "index_pokeviewer_trainers_on_national_ribbon_id"
    t.index ["sky_ribbon_id"], name: "index_pokeviewer_trainers_on_sky_ribbon_id"
    t.index ["world_ribbon_id"], name: "index_pokeviewer_trainers_on_world_ribbon_id"
  end

end