2024-10-11 15:42:19 -07:00
|
|
|
- title "NC Pet Styles"
|
2024-09-30 16:06:22 -07:00
|
|
|
- use_responsive_design
|
2024-01-24 06:53:37 -08:00
|
|
|
|
2024-10-11 15:42:19 -07:00
|
|
|
%ul.breadcrumbs
|
|
|
|
%li= link_to "Rainbow Pool", pet_types_path
|
|
|
|
%li Pet Styles
|
|
|
|
|
2024-10-11 15:50:31 -07:00
|
|
|
:markdown
|
|
|
|
Pet Styles drastically change the appearance of your pet! They're [available
|
2024-10-18 17:29:48 -07:00
|
|
|
in the NC Mall][1], or via "NC Trading". Some of them are "Nostalgic",
|
|
|
|
meaning they're reminiscent of classic Neopets designs from long ago—and some
|
|
|
|
are brand new!
|
2024-10-11 15:50:31 -07:00
|
|
|
|
|
|
|
Pet Styles only fit pets of the same species—but the *color* of the pet
|
|
|
|
doesn't matter! A Blue Acara can wear the "Nostalgic Faerie Acara" Pet Style.
|
|
|
|
|
|
|
|
Only some items fit pets wearing Pet Styles: mostly Backgrounds, Foregrounds,
|
|
|
|
and other items that aren't designed to fit a specific body shape.
|
2024-01-24 06:53:37 -08:00
|
|
|
|
2024-10-11 15:37:37 -07:00
|
|
|
If you have an Pet Style we don't, please model it by entering your pet's
|
2024-02-01 06:58:54 -08:00
|
|
|
name on the homepage! Thank you! 💖
|
2024-01-24 06:53:37 -08:00
|
|
|
|
2024-10-11 15:50:31 -07:00
|
|
|
[1]: https://www.neopets.com/mall/stylingstudio/
|
2024-01-24 07:22:08 -08:00
|
|
|
|
2024-09-30 16:10:26 -07:00
|
|
|
= form_with url: alt_styles_path, method: :get,
|
|
|
|
class: "rainbow-pool-filters" do |f|
|
2024-09-30 16:06:22 -07:00
|
|
|
%fieldset
|
|
|
|
%legend Filter by:
|
2024-09-30 17:25:51 -07:00
|
|
|
= f.select :series, @all_series_names,
|
|
|
|
selected: @series_name, include_blank: "Style…"
|
2024-09-30 16:35:58 -07:00
|
|
|
= f.select :color, @all_color_names,
|
2024-09-30 16:06:22 -07:00
|
|
|
selected: @color&.human_name, include_blank: "Color…"
|
2024-09-30 16:35:58 -07:00
|
|
|
= f.select :species, @all_species_names,
|
2024-09-30 16:06:22 -07:00
|
|
|
selected: @species&.human_name, include_blank: "Species…"
|
2024-09-30 18:05:05 -07:00
|
|
|
= f.submit "Go", name: nil
|
2024-09-30 16:06:22 -07:00
|
|
|
|
2024-09-30 17:35:18 -07:00
|
|
|
= will_paginate @alt_styles, class: "rainbow-pool-pagination"
|
|
|
|
|
|
|
|
%ul.rainbow-pool-list= render @alt_styles
|
|
|
|
|
|
|
|
= will_paginate @alt_styles, class: "rainbow-pool-pagination"
|
2024-09-30 16:06:22 -07:00
|
|
|
|
|
|
|
- content_for :stylesheets do
|
2024-10-11 15:42:19 -07:00
|
|
|
= stylesheet_link_tag "application/breadcrumbs"
|
2024-09-30 16:10:26 -07:00
|
|
|
= stylesheet_link_tag "application/rainbow-pool"
|
2024-09-30 16:06:22 -07:00
|
|
|
= page_stylesheet_link_tag "alt_styles/index"
|