Class: Acme::Smileage::Discography::Albums::MysteryNight_EighteenEmotion

Inherits:
Base
  • Object
show all
Includes:
Singleton
Defined in:
lib/acme/smileage/discography/albums/2014/S016_mystery_night_eighteen_emotion.rb

Instance Attribute Summary

Attributes inherited from Base

#artwork_links, #discography_link, #name, #name_romaji, #nicknames, #oricon, #release_date, #soundscan, #tracks

Instance Method Summary collapse

Methods inherited from Base

#album?, #best_album?, #download_only?, #indies?, #major?, #original_album?, #release_year, #single?

Constructor Details

#initializeMysteryNight_EighteenEmotion

Returns a new instance of MysteryNight_EighteenEmotion.



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
# File 'lib/acme/smileage/discography/albums/2014/S016_mystery_night_eighteen_emotion.rb', line 12

def initialize
  @name = "ミステリーナイト!/エイティーン エモーション"
  @name_romaji = "mystery night!/eighteen emotion"
  @nicknames = ["ミスナイ", "エイエモ", "18エモ"]
  @release_date = Date.new(2014, 4, 30)
  @oricon = Sales.records(
    { :week => 1, :sales => 34340, :rank =>   2 },
    { :week => 2, :sales =>  1047, :rank =>  56 },
    { :week => 3, :sales =>   416, :rank => 116 },
    # 4 週目はランク外
    { :week => 5, :sales =>   813, :rank =>  81 },
  )
  @soundscan = Sales.new(6921 + 6256, 6921 + 6256, 12, 1) # http://www.phileweb.com/ranking/cd-top20/1830.html
  @discography_link = "http://s-mileage.jp/discography/detail_00186/"
  @artwork_links = [
    {
      :title => "ミステリーナイト!/エイティーン エモーション 【通常盤A】",
      :link => "http://s-mileage.jp/discography/obj/img/000/186/140409-1814_01l.jpg",
    },
    {
      :title => "ミステリーナイト!/エイティーン エモーション 【初回生産限定盤A】",
      :link => "http://s-mileage.jp/discography/obj/img/000/186/140409-1814_02l.jpg",
    },
    {
      :title => "ミステリーナイト!/エイティーン エモーション 【初回生産限定盤B】",
      :link => "http://s-mileage.jp/discography/obj/img/000/186/140409-1814_03l.jpg",
    },
    {
      :title => "ミステリーナイト!/エイティーン エモーション 【初回生産限定盤C】",
      :link => "http://s-mileage.jp/discography/obj/img/000/186/140409-1814_04l.jpg",
    },
    {
      :title => "ミステリーナイト!/エイティーン エモーション 【通常盤B】",
      :link => "http://s-mileage.jp/discography/obj/img/000/186/140409-1814_05l.jpg",
    },
  ]

  track Acme::Smileage::Discography::Tracks::MysteryNight
  track Acme::Smileage::Discography::Tracks::EighteenEmotion
end