* 25% off Gold and Platinum accounts. * Free 6 tag searches for Member-level users. * Runs from midnight Dec. 25th to 28th (UTC time).
26 lines
343 B
Ruby
26 lines
343 B
Ruby
class UserUpgrade
|
|
def self.gold_price
|
|
if Danbooru.config.is_promotion?
|
|
1500
|
|
else
|
|
2000
|
|
end
|
|
end
|
|
|
|
def self.platinum_price
|
|
if Danbooru.config.is_promotion?
|
|
3000
|
|
else
|
|
4000
|
|
end
|
|
end
|
|
|
|
def self.upgrade_price
|
|
if Danbooru.config.is_promotion?
|
|
1500
|
|
else
|
|
2000
|
|
end
|
|
end
|
|
end
|