managarten/games/figgos/components/subscription/subscriptionData.json
Till-JS 949b9c85bc 🎮 feat(games): add figgos game to monorepo
- Rename barbiebox to figgos and integrate into monorepo
- Remove separate git repository
- Update package name to @figgos/game
- Add dev scripts (figgos:dev, dev:figgos:ios, dev:figgos:android)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-04 16:26:25 +01:00

138 lines
2.5 KiB
JSON

{
"subscriptions": [
{
"id": "free",
"name": "Kostenlos",
"price": 0,
"priceUnit": "",
"initialMana": 200,
"dailyMana": 10,
"maxMana": 300,
"canGiftMana": false,
"popular": false,
"billingCycle": "monthly"
},
{
"id": "Mini",
"name": "Basic",
"price": 5.99,
"priceUnit": "/ Monat",
"initialMana": 800,
"dailyMana": 20,
"maxMana": 1000,
"canGiftMana": true,
"popular": true,
"billingCycle": "monthly"
},
{
"id": "Plus",
"name": "Premium",
"price": 14.99,
"priceUnit": "/ Monat",
"initialMana": 2500,
"dailyMana": 50,
"maxMana": 4500,
"canGiftMana": true,
"popular": false,
"billingCycle": "monthly"
},
{
"id": "Pro",
"name": "Unlimited",
"price": 29.99,
"priceUnit": "/ Monat",
"initialMana": 5000,
"dailyMana": 100,
"maxMana": 10000,
"canGiftMana": true,
"popular": false,
"billingCycle": "monthly"
},
{
"id": "Mini-yearly",
"name": "Basic",
"price": 59.99,
"priceUnit": "/ Jahr",
"initialMana": 1000,
"dailyMana": 25,
"maxMana": 1200,
"canGiftMana": true,
"popular": true,
"billingCycle": "yearly",
"monthlyEquivalent": 5.0
},
{
"id": "Plus-yearly",
"name": "Premium",
"price": 149.99,
"priceUnit": "/ Jahr",
"initialMana": 3000,
"dailyMana": 60,
"maxMana": 5000,
"canGiftMana": true,
"popular": false,
"billingCycle": "yearly",
"monthlyEquivalent": 12.5
},
{
"id": "Pro-yearly",
"name": "Unlimited",
"price": 299.99,
"priceUnit": "/ Jahr",
"initialMana": 6000,
"dailyMana": 120,
"maxMana": 12000,
"canGiftMana": true,
"popular": false,
"billingCycle": "yearly",
"monthlyEquivalent": 25.0
}
],
"packages": [
{
"id": "small",
"name": "100 Mana",
"manaAmount": 100,
"price": 4.99,
"popular": false
},
{
"id": "medium",
"name": "500 Mana",
"manaAmount": 500,
"price": 19.99,
"popular": true
},
{
"id": "large",
"name": "1000 Mana",
"manaAmount": 1000,
"price": 29.99,
"popular": false
},
{
"id": "team-small",
"name": "2000 Mana",
"manaAmount": 2000,
"price": 49.99,
"isTeamPackage": true,
"popular": false
},
{
"id": "team-medium",
"name": "5000 Mana",
"manaAmount": 5000,
"price": 79.99,
"isTeamPackage": true,
"popular": false
},
{
"id": "team-large",
"name": "10000 Mana",
"manaAmount": 10000,
"price": 99.99,
"isTeamPackage": true,
"popular": false
}
]
}