115 lines
4.1 KiB
Go
Raw Normal View History

2017-10-04 11:39:59 +00:00
package main
import "github.com/animenotifier/arn"
var items = []*arn.Item{
&arn.Item{
ID: "pro-account-3",
Name: "PRO Account (1 season)",
Price: 900,
Description: `PRO account for 1 anime season (3 months).
2017-10-06 07:35:59 +00:00
1 month equals 300 gems.
2017-10-04 11:39:59 +00:00
Includes:
* Special highlight on the forums
2017-10-06 04:49:11 +00:00
* Access to the VIP channel on Discord
2017-10-07 08:18:50 +00:00
* PRO star on your profile
* High priority for your personal suggestions
2017-10-06 04:49:11 +00:00
* Early access to new features`,
2017-10-04 11:39:59 +00:00
Icon: "star",
Rarity: arn.ItemRaritySuperior,
Order: 1,
Consumable: true,
},
&arn.Item{
ID: "pro-account-6",
Name: "PRO Account (2 seasons)",
Price: 1600,
Description: `PRO account for 2 anime seasons (6 months).
2017-10-06 07:35:59 +00:00
11% less monthly costs compared to standard.
2017-10-04 11:39:59 +00:00
Includes:
* Special highlight on the forums
2017-10-06 04:49:11 +00:00
* Access to the VIP channel on Discord
2017-10-07 08:18:50 +00:00
* PRO star on your profile
* High priority for your personal suggestions
2017-10-06 04:49:11 +00:00
* Early access to new features`,
2017-10-04 11:39:59 +00:00
Icon: "star",
Rarity: arn.ItemRarityRare,
Order: 2,
Consumable: true,
},
&arn.Item{
ID: "pro-account-12",
Name: "PRO Account (4 seasons)",
Price: 3000,
Description: `PRO account for 4 anime seasons (12 months).
2017-10-06 07:35:59 +00:00
16% less monthly costs compared to standard.
2017-10-04 11:39:59 +00:00
Includes:
* Special highlight on the forums
2017-10-06 04:49:11 +00:00
* Access to the VIP channel on Discord
2017-10-07 08:18:50 +00:00
* PRO star on your profile
* High priority for your personal suggestions
2017-10-06 04:49:11 +00:00
* Early access to new features`,
2017-10-04 11:39:59 +00:00
Icon: "star",
Rarity: arn.ItemRarityUnique,
Order: 3,
Consumable: true,
},
&arn.Item{
ID: "pro-account-24",
Name: "PRO Account (8 seasons)",
Price: 5900,
Description: `PRO account for 8 anime seasons (24 months).
2017-10-06 07:35:59 +00:00
18% less monthly costs compared to standard.
2017-10-04 11:39:59 +00:00
Includes:
* Special highlight on the forums
2017-10-06 04:49:11 +00:00
* Access to the VIP channel on Discord
2017-10-07 08:18:50 +00:00
* PRO star on your profile
* High priority for your personal suggestions
2017-10-06 04:49:11 +00:00
* Early access to new features`,
2017-10-04 11:39:59 +00:00
Icon: "star",
Rarity: arn.ItemRarityLegendary,
Order: 4,
Consumable: true,
},
&arn.Item{
ID: "anime-support-ticket",
Name: "Anime Support Ticket",
Price: 100,
Description: `Support the makers of your favourite anime by using an anime support ticket.
2017-10-07 08:20:26 +00:00
Anime Notifier uses 15% of the money to handle the transaction fees while the remaining 85% go directly
2017-10-06 10:44:55 +00:00
to the studios involved in the creation of your favourite anime.
*This feature is work in progress.*`,
2017-10-04 11:39:59 +00:00
Icon: "ticket",
Rarity: arn.ItemRarityRare,
Order: 5,
Consumable: false,
},
}
func main() {
for _, item := range items {
item.Save()
}
}
//- ShopItem("PRO Account", "6 months", "1600", "star", strings.Replace(strings.Replace(proAccountMarkdown, "3 months", "6 months", 1), "1 anime season", "2 anime seasons", 1))
//- ShopItem("PRO Account", "1 year", "3000", "star", strings.Replace(strings.Replace(proAccountMarkdown, "3 months", "12 months", 1), "1 anime season", "4 anime seasons", 1))
//- ShopItem("PRO Account", "2 years", "5900", "star", strings.Replace(strings.Replace(proAccountMarkdown, "3 months", "24 months", 1), "1 anime season", "8 anime seasons", 1))
//- ShopItem("Anime Support Ticket", "", "100", "ticket", "Support the makers of your favourite anime by using an anime support ticket. Anime Notifier uses 8% of the money to handle the transaction fees while the remaining 92% go directly to the studios involved in the creation of your favourite anime.")
//- ShopItem("Artwork Support Ticket", "", "100", "ticket", "Support the makers of your favourite artwork by using an artwork support ticket. Anime Notifier uses 8% of the money to handle the transaction fees while the remaining 92% go directly to the creator.")
//- ShopItem("Soundtrack Support Ticket", "", "100", "ticket", "Support the makers of your favourite soundtrack by using a soundtrack support ticket. Anime Notifier uses 8% of the money to handle the transaction fees while the remaining 92% go directly to the creator.")
//- ShopItem("AMV Support Ticket", "", "100", "ticket", "Support the makers of your favourite AMV by using an AMV support ticket. Anime Notifier uses 8% of the money to handle the transaction fees while the remaining 92% go directly to the creator.")