about summary refs log tree commit diff stats
path: root/data/maps/the_repetitive/rooms/Lime Room.txtpb
blob: 37d4937ec8a3eaee2d64a6d2dcfcd192db5292b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: "Lime Room"
panels {
  name: "RAT"
  path: "Panels/Lingo2/panel_1"
  clue: "rat"
  answer: "tartar"
}
panels {
  name: "POMPOM"
  path: "Panels/Lingo2/panel_2"
  clue: "pompom"
  answer: "mop"
}
panels {
  name: "TWENTY"
  path: "Panels/Lingo2/panel_7"
  clue: "twenty"
  answer: "blind"
  symbols: SUN
}
panels {
  name: "EQUAL"
  path: "Panels/Lingo2/panel_8"
  clue: "equal"
  answer: "fifty"
  symbols: SUN
}
panels {
  name: "PIGEON"
  path: "Panels/Lingo2/panel_10"
  clue: "pigeon"
  answer: "cuckoo"
  symbols: ZERO
  symbols: SOUND
}
panels {
  name: "BIRD"
  path: "Panels/Lingo2/panel_11"
  clue: "bird"
  answer: "do"
  symbols: EXAMPLE
}
panels {
  name: "MISTAKE"
  path: "Panels/Lingo2/panel_12"
  clue: "mistake"
  answer: "ghost"
  symbols: SUN
  symbols: SOUND
}
panels {
  name: "INJURY"
  path: "Panels/Lingo2/panel_26"
  clue: "injury"
  answer: "boo"
  symbols: PYRAMID
}
panels {
  name: "TRAIN"
  path: "Panels/Lingo2/panel_13"
  clue: "train"
  answer: "chew"
  symbols: ZERO
  symbols: SOUND
}
panels {
  name: "ELLIPSIS"
  path: "Panels/Lingo2/panel_14"
  clue: "ellipsis"
  answer: "dot"
  symbols: SUN
}
panels {
  name: "SLEEPER"
  path: "Panels/Lingo2/panel_15"
  clue: "sleeper"
  answer: "z"
  symbols: SOUND
}
panels {
  name: "OH"
  path: "Panels/Lingo2/panel_16"
  clue: "oh"
  answer: "santa"
  symbols: SOUND
}
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 */
%article.quote.h-entry{ :id => "quote-#{quote.id}" }
  %data.p-name{ value: "\##{quote.id}" }
  %data.u-url{ value: url_for(quote) }
  %header.quote-header{ :id => "quote-header-#{quote.id}" }
    = link_to_unless (quote.new_record? or current_page?(quote)), "\##{quote.id}", quote, :class => "quote-link"
    %span.vote-link{ :id => "quote-upvote-link-#{quote.id}" }= link_to_unless (quote.new_record? or quote.already_upvoted?(request.remote_ip)), "Up", upvote_quote_path(quote.id), :remote => true, :rel => "nofollow", :class => "quote-upvote-link", method: :post
    %span.quote-rating{ :id => "quote-rating-#{quote.id}" }= "+#{quote.upvotes}/-#{quote.downvotes}"
    %span.vote-link{ :id => "quote-downvote-link-#{quote.id}" }= link_to_unless (quote.new_record? or quote.already_downvoted?(request.remote_ip)), "Down", downvote_quote_path(quote.id), :remote => true, :rel => "nofollow", :class => "quote-downvote-link", method: :post
    %time.dt-published{ datetime: quote.created_at.strftime("%Y-%m-%dT%H:%M:%SZ%z") }= quote.published_date
    - if user_signed_in? and !quote.new_record?
      = link_to "Edit", edit_admin_quote_path(quote), :class => "quote-edit-link"
  - if quote.audio.attached?
    .audioplayer= audio_tag(rails_blob_url(quote.audio), controls: true)
  %blockquote.quote-body.e-content= raw quote_format(h(quote.content))
  - if !quote.new_record? and quote.has_extra?
    .quote-footer
      - if quote.has_notes?
        .quote-notes= auto_link(quote.notes, :link => :urls)
      - if quote.has_tags?
        %ul.quote-tags
          - quote.tags.each do |tag|
            %li= link_to tag.name, tag_quotes_path(tag.name)