UNPKG

@kitten-science/game-data

Version:

[![QA Main](https://github.com/kitten-science/game-data/actions/workflows/qa-main.yml/badge.svg)](https://github.com/kitten-science/game-data/actions/workflows/qa-main.yml) [![Generate](https://github.com/kitten-science/game-data/actions/workflows/generat

246 lines (244 loc) 6.39 kB
// // Kitten game is licensed under a WET PAWS LICENSE. // // You are free to make any changes in the code for personal or educational purpose. // Using the game code for commercial gain or creation of derivative works is not permitted. // // Hosting a translated version of the game is permitted as long as the game retains all links. // And for god's sake please don't make huge idiotic red logos of your website. (Yes, u77 folks, I am talking about you). // // Kitten Science Game Data Exporter © 2025 by Oliver Salzburg is licensed under CC BY-NC-ND 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/4.0/ // export default { "solarchant": { "name": "solarchant", "label": "Solar Chant", "description": "Improves your faith generation rate by 10%", "prices": [ { "name": "faith", "val": 100 } ], "faith": 150, "effects": { "faithRatioReligion": 0.1 }, "noStackable": true, "priceRatio": 2.5 }, "scholasticism": { "name": "scholasticism", "label": "Scholasticism", "description": "Temples will give a bonus to max science", "prices": [ { "name": "faith", "val": 250 } ], "faith": 300, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5 }, "goldenSpire": { "name": "goldenSpire", "label": "Golden Spire", "description": "Temples can store 50% more faith", "prices": [ { "name": "gold", "val": 150 }, { "name": "faith", "val": 350 } ], "faith": 500, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5, "flavor": "A luxurious spike" }, "sunAltar": { "name": "sunAltar", "label": "Sun Altar", "description": "Every temple can store a bit more faith and will improve happiness by 0.5%", "prices": [ { "name": "gold", "val": 250 }, { "name": "faith", "val": 500 } ], "faith": 750, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5 }, "stainedGlass": { "name": "stainedGlass", "label": "Stained Glass", "description": "Every temple will generate twice as much culture", "prices": [ { "name": "gold", "val": 250 }, { "name": "faith", "val": 500 } ], "faith": 750, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5 }, "solarRevolution": { "name": "solarRevolution", "label": "Solar Revolution", "description": "Worship will give a small boost to resource production.", "prices": [ { "name": "gold", "val": 500 }, { "name": "faith", "val": 750 } ], "faith": 1000, "effects": { "solarRevolutionRatio": 0 }, "noStackable": true }, "basilica": { "name": "basilica", "label": "Basilica", "description": "Temples generate more culture and expand cultural limits", "prices": [ { "name": "gold", "val": 750 }, { "name": "faith", "val": 1250 } ], "faith": 10000, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5 }, "templars": { "name": "templars", "label": "Templar", "description": "Temples have a small impact on the catpower limit", "prices": [ { "name": "gold", "val": 3000 }, { "name": "faith", "val": 3500 } ], "faith": 75000, "effects": {}, "upgrades": { "buildings": [ "temple", "ziggurat" ] }, "noStackable": true, "priceRatio": 2.5 }, "apocripha": { "name": "apocripha", "label": "Apocrypha", "description": "Grants the ability to convert worship to epiphany, which improves the effectiveness of praying", "prices": [ { "name": "gold", "val": 5000 }, { "name": "faith", "val": 5000 } ], "faith": 100000, "effects": {}, "noStackable": true }, "transcendence": { "name": "transcendence", "label": "Transcendence", "description": "Unlocks additional religion upgrades", "prices": [ { "name": "gold", "val": 7500 }, { "name": "faith", "val": 7500 } ], "faith": 125000, "effects": {}, "upgrades": { "religion": [ "solarchant", "scholasticism", "goldenSpire", "sunAltar", "stainedGlass", "basilica", "templars" ] }, "noStackable": true } };