Weighted character selection

This commit is contained in:
2024-06-14 15:33:36 -04:00
parent ee6fa21177
commit 082b1353bc
36 changed files with 2914 additions and 160 deletions

View File

@@ -0,0 +1,611 @@
extends Node
const Rarity = {
"COMMON":0.8,
"UNCOMMON": 0.4,
"RARE": 0.2,
"SUPERRARE": 0.1,
"LEGENDARY": 0.05
}
var members = {
"squire": {
"name": "Squire",
"description": "Someone who does things for someone else, not very impressive.",
"perSec": 1,
"clickAdd": 1,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Squire.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"archer": {
"name": "Archer",
"description": "Better at accurate clicks than consistent damage",
"perSec": 2,
"clickAdd": 2,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Archer.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"mage": {
"name": "Mage",
"description": "A good mix of DPS and click power",
"perSec": 3,
"clickAdd": 3,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Mage.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"warrior": {
"name": "Warrior",
"description": "Strong and brave fighter",
"perSec": 4,
"clickAdd": 4,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Warrior.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"healer": {
"name": "Healer",
"description": "Skilled in healing magic",
"perSec": 5,
"clickAdd": 5,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Healer.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"knight": {
"name": "Knight",
"description": "Valiant defender of the realm",
"perSec": 6,
"clickAdd": 6,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Knight.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"assassin": {
"name": "Assassin",
"description": "Expert in stealth and quick kills",
"perSec": 7,
"clickAdd": 7,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Assassin.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"paladin": {
"name": "Paladin",
"description": "Holy warrior with healing abilities",
"perSec": 8,
"clickAdd": 8,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Paladin.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"ranger": {
"name": "Ranger",
"description": "Skilled in ranged combat and survival",
"perSec": 9,
"clickAdd": 9,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Ranger.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"bard": {
"name": "Bard",
"description": "Musical magician with supportive abilities",
"perSec": 10,
"clickAdd": 10,
"scoreMultiplier": 1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Bard.png",
"tier": 1,
"rarity": Rarity.COMMON
},
"crusader": {
"name": "Crusader",
"description": "Devout warrior on a holy quest",
"perSec": 11,
"clickAdd": 11,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Crusader.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"druid": {
"name": "Druid",
"description": "Nature mage with control over the elements",
"perSec": 12,
"clickAdd": 12,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Druid.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"samurai": {
"name": "Samurai",
"description": "Noble warrior with unmatched skill",
"perSec": 13,
"clickAdd": 13,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Samurai.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"ninja": {
"name": "Ninja",
"description": "Stealthy assassin with deadly precision",
"perSec": 14,
"clickAdd": 14,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Ninja.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"summoner": {
"name": "Summoner",
"description": "Mage with the ability to summon creatures",
"perSec": 15,
"clickAdd": 15,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Summoner.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"shaman": {
"name": "Shaman",
"description": "Spiritual healer and magic user",
"perSec": 16,
"clickAdd": 16,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Shaman.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"necromancer": {
"name": "Necromancer",
"description": "Dark mage with control over the dead",
"perSec": 17,
"clickAdd": 17,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Necromancer.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"berserker": {
"name": "Berserker",
"description": "Fierce warrior with unstoppable rage",
"perSec": 18,
"clickAdd": 18,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Berserker.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"monk": {
"name": "Monk",
"description": "Master of martial arts and inner peace",
"perSec": 19,
"clickAdd": 19,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Monk.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"alchemist": {
"name": "Alchemist",
"description": "Skilled in the art of potion-making",
"perSec": 20,
"clickAdd": 20,
"scoreMultiplier": 1.1,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Alchemist.png",
"tier": 2,
"rarity": Rarity.UNCOMMON
},
"barbarian": {
"name": "Barbarian",
"description": "Savage warrior with immense strength",
"perSec": 21,
"clickAdd": 21,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Barbarian.png",
"tier": 3,
"rarity": Rarity.RARE
},
"illusionist": {
"name": "Illusionist",
"description": "Mage with mastery over illusions",
"perSec": 22,
"clickAdd": 22,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Illusionist.png",
"tier": 3,
"rarity": Rarity.RARE
},
"warlock": {
"name": "Warlock",
"description": "Dark mage with forbidden knowledge",
"perSec": 23,
"clickAdd": 23,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Warlock.png",
"tier": 3,
"rarity": Rarity.RARE
},
"pirate": {
"name": "Pirate",
"description": "Swashbuckling rogue of the seas",
"perSec": 24,
"clickAdd": 24,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Pirate.png",
"tier": 3,
"rarity": Rarity.RARE
},
"gladiator": {
"name": "Gladiator",
"description": "Champion of the arena",
"perSec": 25,
"clickAdd": 25,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Gladiator.png",
"tier": 3,
"rarity": Rarity.RARE
},
"rune_master": {
"name": "Rune Master",
"description": "Mage with mastery over runic magic",
"perSec": 26,
"clickAdd": 26,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Rune_Master.png",
"tier": 3,
"rarity": Rarity.RARE
},
"beastmaster": {
"name": "Beastmaster",
"description": "Warrior with control over beasts",
"perSec": 27,
"clickAdd": 27,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Beastmaster.png",
"tier": 3,
"rarity": Rarity.RARE
},
"elementalist": {
"name": "Elementalist",
"description": "Mage with control over the elements",
"perSec": 28,
"clickAdd": 28,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Elementalist.png",
"tier": 3,
"rarity": Rarity.RARE
},
"shadow_knight": {
"name": "Shadow Knight",
"description": "Dark warrior with control over shadows",
"perSec": 29,
"clickAdd": 29,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Shadow_Knight.png",
"tier": 3,
"rarity": Rarity.RARE
},
"archmage": {
"name": "Archmage",
"description": "Supreme master of magical arts",
"perSec": 30,
"clickAdd": 30,
"scoreMultiplier": 1.2,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Archmage.png",
"tier": 3,
"rarity": Rarity.RARE
},
"dark_paladin": {
"name": "Dark Paladin",
"description": "Corrupted knight with dark powers",
"perSec": 31,
"clickAdd": 31,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Dark_Paladin.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"demon_hunter": {
"name": "Demon Hunter",
"description": "Expert in slaying demonic creatures",
"perSec": 32,
"clickAdd": 32,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Demon_Hunter.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"spirit_guardian": {
"name": "Spirit Guardian",
"description": "Protector of the spiritual realm",
"perSec": 33,
"clickAdd": 33,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Spirit_Guardian.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"phoenix": {
"name": "Phoenix",
"description": "Immortal bird of fire and rebirth",
"perSec": 34,
"clickAdd": 34,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Phoenix.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"dragon_rider": {
"name": "Dragon Rider",
"description": "Warrior who rides a mighty dragon",
"perSec": 35,
"clickAdd": 35,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Dragon_Rider.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"soul_reaper": {
"name": "Soul Reaper",
"description": "Harvester of souls from the afterlife",
"perSec": 36,
"clickAdd": 36,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Soul_Reaper.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"stormcaller": {
"name": "Stormcaller",
"description": "Mage with control over storms",
"perSec": 37,
"clickAdd": 37,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Stormcaller.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"blade_dancer": {
"name": "Blade Dancer",
"description": "Agile warrior with deadly precision",
"perSec": 38,
"clickAdd": 38,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Blade_Dancer.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"celestial_mage": {
"name": "Celestial Mage",
"description": "Mage with power over celestial bodies",
"perSec": 39,
"clickAdd": 39,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Celestial_Mage.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"void_walker": {
"name": "Void Walker",
"description": "Mage with control over void magic",
"perSec": 40,
"clickAdd": 40,
"scoreMultiplier": 1.3,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Void_Walker.png",
"tier": 4,
"rarity": Rarity.SUPERRARE
},
"eternal_knight": {
"name": "Eternal Knight",
"description": "Immortal protector of the realm",
"perSec": 41,
"clickAdd": 41,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Eternal_Knight.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"chaos_warrior": {
"name": "Chaos Warrior",
"description": "Warrior with control over chaos",
"perSec": 42,
"clickAdd": 42,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Chaos_Warrior.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"starfall_mage": {
"name": "Starfall Mage",
"description": "Mage with control over falling stars",
"perSec": 43,
"clickAdd": 43,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Starfall_Mage.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"abyssal_warlock": {
"name": "Abyssal Warlock",
"description": "Dark mage with control over the abyss",
"perSec": 44,
"clickAdd": 44,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Abyssal_Warlock.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"lunar_knight": {
"name": "Lunar Knight",
"description": "Warrior with power over the moon",
"perSec": 45,
"clickAdd": 45,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lunar_Knight.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"cosmic_mage": {
"name": "Cosmic Mage",
"description": "Mage with control over cosmic energy",
"perSec": 46,
"clickAdd": 46,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Cosmic_Mage.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"shadow_assassin": {
"name": "Shadow Assassin",
"description": "Master assassin with control over shadows",
"perSec": 47,
"clickAdd": 47,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Shadow_Assassin.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"firelord": {
"name": "Firelord",
"description": "Mage with mastery over fire",
"perSec": 48,
"clickAdd": 48,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Firelord.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"ice_queen": {
"name": "Ice Queen",
"description": "Mage with mastery over ice",
"perSec": 49,
"clickAdd": 49,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Ice_Queen.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
},
"celeste_the_starcaller": {
"name": "Celeste the Starcaller",
"description": "Mage with control over stars",
"perSec": 50,
"clickAdd": 50,
"scoreMultiplier": 1.4,
"isObtained": false,
"memberAmount": 1,
"texturePath": "res://Images/Members/Celeste_the_Starcaller.png",
"tier": 5,
"rarity": Rarity.LEGENDARY
}
}

View File

@@ -8,7 +8,9 @@
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Squire.png"
"texturePath": "res://Images/Members/Squire.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Archer",
@@ -18,7 +20,9 @@
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Archer.png"
"texturePath": "res://Images/Members/Archer.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Mage",
@@ -28,207 +32,561 @@
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Mage.png"
"texturePath": "res://Images/Members/Mage.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Knight",
"description": "A brave warrior in heavy armor.",
"perSec": 2,
"clickAdd": 5,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Knight.png"
},
{
"name": "Healer",
"description": "Specializes in healing magic.",
"perSec": 0,
"clickAdd": 0,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Healer.png"
},
{
"name": "Thief",
"description": "Quick and stealthy, perfect for stealing.",
"perSec": 3,
"name": "Warrior",
"description": "Strong and brave, with high attack power",
"perSec": 15,
"clickAdd": 15,
"scoreMultiplier": 1,
"scoreMultiplier": 1.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thief.png"
},
{
"name": "Berserker",
"description": "A frenzied warrior with immense power.",
"perSec": 5,
"clickAdd": 25,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Berserker.png"
},
{
"name": "Paladin",
"description": "A holy warrior with both offensive and defensive skills.",
"perSec": 3,
"clickAdd": 10,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Paladin.png"
},
{
"name": "Druid",
"description": "A nature mage with control over the elements.",
"perSec": 4,
"clickAdd": 20,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Druid.png"
"texturePath": "res://Images/Members/Warrior.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Rogue",
"description": "A master of stealth and quick strikes.",
"perSec": 2,
"clickAdd": 15,
"scoreMultiplier": 1,
"description": "Quick and stealthy, with a high critical hit chance",
"perSec": 12,
"clickAdd": 18,
"scoreMultiplier": 1.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Rogue.png"
"texturePath": "res://Images/Members/Rogue.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Barbarian",
"description": "A powerful melee fighter with a wild nature.",
"perSec": 6,
"clickAdd": 30,
"scoreMultiplier": 1,
"name": "Priest",
"description": "Healer with powerful restorative abilities",
"perSec": 8,
"clickAdd": 8,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Barbarian.png"
"texturePath": "res://Images/Members/Priest.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Sorcerer",
"description": "A spellcaster with a variety of powerful spells.",
"perSec": 7,
"clickAdd": 35,
"scoreMultiplier": 1,
"name": "Paladin",
"description": "Holy warrior with balanced stats",
"perSec": 11,
"clickAdd": 11,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Sorcerer.png"
"texturePath": "res://Images/Members/Paladin.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Hunter",
"description": "Ranged attacker with high agility",
"perSec": 13,
"clickAdd": 13,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Hunter.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Bard",
"description": "Support character with buffs and debuffs",
"perSec": 9,
"clickAdd": 9,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Bard.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Monk",
"description": "A martial artist with quick reflexes.",
"perSec": 3,
"clickAdd": 10,
"scoreMultiplier": 1,
"description": "Martial artist with high dodge and attack speed",
"perSec": 14,
"clickAdd": 14,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Monk.png"
"texturePath": "res://Images/Members/Monk.png",
"tier": 1,
"rarity": "Rarity.COMMON"
},
{
"name": "Godric the Forest King",
"description": "A wise ruler of the enchanted forest.",
"perSec": 10,
"clickAdd": 50,
"scoreMultiplier": 2,
"name": "Necromancer",
"description": "Master of dark magic and summoner of undead",
"perSec": 16,
"clickAdd": 16,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Godric.png"
"texturePath": "res://Images/Members/Necromancer.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Elara the Enchantress",
"description": "A mysterious sorceress with immense power.",
"perSec": 8,
"clickAdd": 40,
"scoreMultiplier": 2,
"name": "Samurai",
"description": "Warrior with high precision and honor",
"perSec": 18,
"clickAdd": 18,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Elara.png"
"texturePath": "res://Images/Members/Samurai.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Thane the Swiftblade",
"description": "A master swordsman with unparalleled speed.",
"perSec": 6,
"clickAdd": 30,
"scoreMultiplier": 2,
"name": "Elementalist",
"description": "Mage with control over the elements",
"perSec": 17,
"clickAdd": 17,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thane.png"
"texturePath": "res://Images/Members/Elementalist.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Morgana the Dark Witch",
"description": "A dark mage with forbidden knowledge.",
"perSec": 7,
"clickAdd": 35,
"scoreMultiplier": 2,
"name": "Druid",
"description": "Nature guardian with healing and summoning abilities",
"perSec": 19,
"clickAdd": 19,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Morgana.png"
"texturePath": "res://Images/Members/Druid.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Baldric the Brave",
"description": "A knight known for his bravery and honor.",
"perSec": 5,
"clickAdd": 25,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Baldric.png"
},
{
"name": "Isolde the Ice Queen",
"description": "A queen with control over ice and frost.",
"perSec": 9,
"clickAdd": 45,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Isolde.png"
},
{
"name": "Draven the Shadow Assassin",
"description": "A deadly assassin who strikes from the shadows.",
"perSec": 4,
"name": "Sorcerer",
"description": "Powerful spellcaster with high damage",
"perSec": 20,
"clickAdd": 20,
"scoreMultiplier": 2,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Draven.png"
"texturePath": "res://Images/Members/Sorcerer.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Fiora the Flamecaller",
"description": "A mage with mastery over fire.",
"perSec": 8,
"clickAdd": 40,
"scoreMultiplier": 2,
"name": "Assassin",
"description": "Deadly and stealthy killer",
"perSec": 21,
"clickAdd": 21,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Fiora.png"
"texturePath": "res://Images/Members/Assassin.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Alistair the Protector",
"description": "A guardian with a strong sense of duty.",
"perSec": 5,
"name": "Berserker",
"description": "Fierce warrior with high attack speed",
"perSec": 22,
"clickAdd": 22,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Berserker.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Summoner",
"description": "Can summon powerful creatures to fight",
"perSec": 23,
"clickAdd": 23,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Summoner.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Illusionist",
"description": "Master of illusion and trickery",
"perSec": 24,
"clickAdd": 24,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Illusionist.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Gladiator",
"description": "Fearless fighter with high defense",
"perSec": 25,
"clickAdd": 25,
"scoreMultiplier": 2,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Alistair.png"
"texturePath": "res://Images/Members/Gladiator.png",
"tier": 2,
"rarity": "Rarity.UNCOMMON"
},
{
"name": "Lyra the Lightbringer",
"description": "A healer with a radiant aura.",
"perSec": 6,
"name": "Warlord",
"description": "Leader with commanding presence",
"perSec": 26,
"clickAdd": 26,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Warlord.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Mystic",
"description": "Enchanter with mystical powers",
"perSec": 27,
"clickAdd": 27,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Mystic.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Shaman",
"description": "Spiritual guide with healing and offensive spells",
"perSec": 28,
"clickAdd": 28,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Shaman.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Warlock",
"description": "Dark sorcerer with powerful curses",
"perSec": 29,
"clickAdd": 29,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Warlock.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Barbarian",
"description": "Brutal warrior with immense strength",
"perSec": 30,
"clickAdd": 30,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Barbarian.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Spellblade",
"description": "Warrior with enchanted blades",
"perSec": 31,
"clickAdd": 31,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Spellblade.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Runesmith",
"description": "Artisan with knowledge of magical runes",
"perSec": 32,
"clickAdd": 32,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Runesmith.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Templar",
"description": "Holy warrior with divine protection",
"perSec": 33,
"clickAdd": 33,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Templar.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Demon Hunter",
"description": "Hunter specialized in slaying demons",
"perSec": 34,
"clickAdd": 34,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Demon_Hunter.png",
"tier": 3,
"rarity": "Rarity.RARE"
},
{
"name": "Chronomancer",
"description": "Mage with control over time",
"perSec": 35,
"clickAdd": 35,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Chronomancer.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Phoenix Knight",
"description": "Knight reborn from the ashes",
"perSec": 36,
"clickAdd": 36,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Phoenix_Knight.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Shadowblade",
"description": "Rogue with mastery over shadows",
"perSec": 37,
"clickAdd": 37,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Shadowblade.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Starcaller",
"description": "Mage with power to call forth stars",
"perSec": 38,
"clickAdd": 38,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Starcaller.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Lich King",
"description": "Undead sorcerer with dark powers",
"perSec": 39,
"clickAdd": 39,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lich_King.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Beastmaster",
"description": "Warrior with control over beasts",
"perSec": 40,
"clickAdd": 40,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Beastmaster.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Archmage",
"description": "Supreme master of magic",
"perSec": 41,
"clickAdd": 41,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lyra.png"
"texturePath": "res://Images/Members/Archmage.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Witch Hunter",
"description": "Hunter specialized in hunting witches",
"perSec": 42,
"clickAdd": 42,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Witch_Hunter.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Nyx the Shadowcaster",
"description": "Sorceress with control over shadows",
"perSec": 43,
"clickAdd": 43,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Nyx_the_Shadowcaster.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Cedric the Valiant",
"description": "Knight with unmatched valor",
"perSec": 44,
"clickAdd": 44,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Cedric_the_Valiant.png",
"tier": 4,
"rarity": "Rarity.SUPERRARE"
},
{
"name": "Raven the Silent",
"description": "Stealthy assassin with deadly skills",
"perSec": 45,
"clickAdd": 45,
"scoreMultiplier": 2.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Raven_the_Silent.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Zephyr the Swift",
"description": "Fast and agile warrior",
"perSec": 46,
"clickAdd": 46,
"scoreMultiplier": 2.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Zephyr_the_Swift.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Thorn the Protector",
"description": "Guardian with high defense",
"perSec": 47,
"clickAdd": 47,
"scoreMultiplier": 2.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thorn_the_Protector.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Inferno the Flamebringer",
"description": "Mage with control over fire",
"perSec": 48,
"clickAdd": 48,
"scoreMultiplier": 2.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Inferno_the_Flamebringer.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Eclipse the Shadowmaster",
"description": "Sorcerer with mastery over darkness",
"perSec": 49,
"clickAdd": 49,
"scoreMultiplier": 2.1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Eclipse_the_Shadowmaster.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Avalanche the Frost Giant",
"description": "Giant with control over ice",
"perSec": 50,
"clickAdd": 50,
"scoreMultiplier": 2.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Avalanche_the_Frost_Giant.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Storm the Thunderlord",
"description": "Lord with control over storms",
"perSec": 51,
"clickAdd": 51,
"scoreMultiplier": 2.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Storm_the_Thunderlord.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Luna the Moon Sorceress",
"description": "Sorceress with power over the moon",
"perSec": 52,
"clickAdd": 52,
"scoreMultiplier": 2.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Luna_the_Moon_Sorceress.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Drake the Dragon Knight",
"description": "Knight with dragon-like powers",
"perSec": 53,
"clickAdd": 53,
"scoreMultiplier": 2.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Drake_the_Dragon_Knight.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
},
{
"name": "Celeste the Starcaller",
"description": "Mage with control over stars",
"perSec": 54,
"clickAdd": 54,
"scoreMultiplier": 2.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Celeste_the_Starcaller.png",
"tier": 5,
"rarity": "Rarity.LEGENDARY"
}
]
}

114
MemberDatabase/tier1.json Normal file
View File

@@ -0,0 +1,114 @@
{
"members": [
{
"name": "Squire",
"description": "Someone who does things for someone else, not very impressive.",
"perSec": 1,
"clickAdd": 1,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Squire.png",
"tier": 1
},
{
"name": "Archer",
"description": "Better at accurate clicks than consistent damage",
"perSec": 1,
"clickAdd": 20,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Archer.png",
"tier": 1
},
{
"name": "Mage",
"description": "A good mix of DPS and click power",
"perSec": 10,
"clickAdd": 10,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Mage.png",
"tier": 1
},
{
"name": "Knight",
"description": "Strong and reliable, a true protector",
"perSec": 5,
"clickAdd": 5,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Knight.png",
"tier": 1
},
{
"name": "Healer",
"description": "Keeps the team alive with healing magic",
"perSec": 1,
"clickAdd": 0,
"scoreMultiplier": 1,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Healer.png",
"tier": 1
},
{
"name": "Thief",
"description": "Stealthy and quick, steals from enemies",
"perSec": 3,
"clickAdd": 2,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thief.png",
"tier": 1
},
{
"name": "Berserker",
"description": "Frenzied warrior with high attack power",
"perSec": 7,
"clickAdd": 7,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Berserker.png",
"tier": 1
},
{
"name": "Paladin",
"description": "Holy warrior with balanced skills",
"perSec": 4,
"clickAdd": 4,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Paladin.png",
"tier": 1
},
{
"name": "Druid",
"description": "Nature magic user, versatile and powerful",
"perSec": 6,
"clickAdd": 6,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Druid.png",
"tier": 1
},
{
"name": "Rogue",
"description": "A master of stealth and quick attacks",
"perSec": 2,
"clickAdd": 8,
"scoreMultiplier": 1.2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Rogue.png",
"tier": 1
}
]
}

114
MemberDatabase/tier2.json Normal file
View File

@@ -0,0 +1,114 @@
{
"members": [
{
"name": "Barbarian",
"description": "Brute strength with massive damage",
"perSec": 8,
"clickAdd": 8,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Barbarian.png",
"tier": 2
},
{
"name": "Sorcerer",
"description": "Wields powerful magic to destroy enemies",
"perSec": 9,
"clickAdd": 9,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Sorcerer.png",
"tier": 2
},
{
"name": "Monk",
"description": "Balanced fighter with spiritual power",
"perSec": 5,
"clickAdd": 5,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Monk.png",
"tier": 2
},
{
"name": "Godric the Forest King",
"description": "Ruler of the forest with nature powers",
"perSec": 15,
"clickAdd": 10,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Godric_the_Forest_King.png",
"tier": 2
},
{
"name": "Elara the Enchantress",
"description": "Mystical enchantress with powerful spells",
"perSec": 12,
"clickAdd": 12,
"scoreMultiplier": 1.3,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Elara_the_Enchantress.png",
"tier": 2
},
{
"name": "Thane the Swiftblade",
"description": "Master swordsman with unparalleled speed",
"perSec": 14,
"clickAdd": 14,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thane_the_Swiftblade.png",
"tier": 2
},
{
"name": "Morgana the Dark Witch",
"description": "Dark magic user with devastating spells",
"perSec": 16,
"clickAdd": 16,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Morgana_the_Dark_Witch.png",
"tier": 2
},
{
"name": "Baldric the Brave",
"description": "Courageous knight with unmatched bravery",
"perSec": 13,
"clickAdd": 13,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Baldric_the_Brave.png",
"tier": 2
},
{
"name": "Isolde the Ice Queen",
"description": "Queen with control over ice and snow",
"perSec": 18,
"clickAdd": 18,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Isolde_the_Ice_Queen.png",
"tier": 2
},
{
"name": "Draven the Shadow Assassin",
"description": "Stealthy assassin from the shadows",
"perSec": 20,
"clickAdd": 20,
"scoreMultiplier": 1.4,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Draven_the_Shadow_Assassin.png",
"tier": 2
}
]
}

114
MemberDatabase/tier3.json Normal file
View File

@@ -0,0 +1,114 @@
{
"members": [
{
"name": "Fiora the Flamecaller",
"description": "Master of fire magic with destructive power",
"perSec": 17,
"clickAdd": 17,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Fiora_the_Flamecaller.png",
"tier": 3
},
{
"name": "Alistair the Protector",
"description": "Defender with strong protective abilities",
"perSec": 11,
"clickAdd": 11,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Alistair_the_Protector.png",
"tier": 3
},
{
"name": "Nerida the Sea Sorceress",
"description": "Sorceress with control over the seas",
"perSec": 19,
"clickAdd": 19,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Nerida_the_Sea_Sorceress.png",
"tier": 3
},
{
"name": "Garret the Fierce",
"description": "Warrior with unmatched ferocity",
"perSec": 21,
"clickAdd": 21,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Garret_the_Fierce.png",
"tier": 3
},
{
"name": "Lysandra the Mystic",
"description": "Mystic with powerful and ancient knowledge",
"perSec": 22,
"clickAdd": 22,
"scoreMultiplier": 1.5,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lysandra_the_Mystic.png",
"tier": 3
},
{
"name": "Talia the Stormbringer",
"description": "Commands the power of storms",
"perSec": 23,
"clickAdd": 23,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Talia_the_Stormbringer.png",
"tier": 3
},
{
"name": "Borin the Boulder",
"description": "Unmovable force with great strength",
"perSec": 25,
"clickAdd": 25,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Borin_the_Boulder.png",
"tier": 3
},
{
"name": "Lyra the Moonshadow",
"description": "Assassin with the power of the moon",
"perSec": 26,
"clickAdd": 26,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lyra_the_Moonshadow.png",
"tier": 3
},
{
"name": "Kara the Windrunner",
"description": "Swift archer with control over wind",
"perSec": 27,
"clickAdd": 27,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Kara_the_Windrunner.png",
"tier": 3
},
{
"name": "Darius the Earthshaker",
"description": "Warrior with the power to shake the earth",
"perSec": 28,
"clickAdd": 28,
"scoreMultiplier": 1.6,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Darius_the_Earthshaker.png",
"tier": 3
}
]
}

114
MemberDatabase/tier4.json Normal file
View File

@@ -0,0 +1,114 @@
{
"members": [
{
"name": "Ariana the Starcaller",
"description": "Mage with the ability to call upon stars",
"perSec": 30,
"clickAdd": 30,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Ariana_the_Starcaller.png",
"tier": 4
},
{
"name": "Grom the Thunderfist",
"description": "Warrior with fists like thunder",
"perSec": 31,
"clickAdd": 31,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Grom_the_Thunderfist.png",
"tier": 4
},
{
"name": "Selene the Frostwitch",
"description": "Witch with the power of frost",
"perSec": 32,
"clickAdd": 32,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Selene_the_Frostwitch.png",
"tier": 4
},
{
"name": "Victor the Valiant",
"description": "Valiant knight with great courage",
"perSec": 33,
"clickAdd": 33,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Victor_the_Valiant.png",
"tier": 4
},
{
"name": "Fenris the Beastmaster",
"description": "Master of beasts and wild creatures",
"perSec": 34,
"clickAdd": 34,
"scoreMultiplier": 1.7,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Fenris_the_Beastmaster.png",
"tier": 4
},
{
"name": "Zara the Flamestrike",
"description": "Warrior with the power of flames",
"perSec": 35,
"clickAdd": 35,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Zara_the_Flamestrike.png",
"tier": 4
},
{
"name": "Eldrin the Wise",
"description": "Mage with great wisdom and power",
"perSec": 36,
"clickAdd": 36,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Eldrin_the_Wise.png",
"tier": 4
},
{
"name": "Luna the Moonlight",
"description": "Mystic with the power of moonlight",
"perSec": 37,
"clickAdd": 37,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Luna_the_Moonlight.png",
"tier": 4
},
{
"name": "Orin the Invincible",
"description": "Warrior with unmatched strength",
"perSec": 38,
"clickAdd": 38,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Orin_the_Invincible.png",
"tier": 4
},
{
"name": "Seraphina the Radiant",
"description": "Angel with radiant power",
"perSec": 39,
"clickAdd": 39,
"scoreMultiplier": 1.8,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Seraphina_the_Radiant.png",
"tier": 4
}
]
}

114
MemberDatabase/tier5.json Normal file
View File

@@ -0,0 +1,114 @@
{
"members": [
{
"name": "Thalor the Dragonborn",
"description": "Warrior with dragon's strength",
"perSec": 40,
"clickAdd": 40,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thalor_the_Dragonborn.png",
"tier": 5
},
{
"name": "Aeris the Skyblade",
"description": "Swift warrior of the skies",
"perSec": 41,
"clickAdd": 41,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Aeris_the_Skyblade.png",
"tier": 5
},
{
"name": "Nyx the Shadowcaster",
"description": "Mage with control over shadows",
"perSec": 42,
"clickAdd": 42,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Nyx_the_Shadowcaster.png",
"tier": 5
},
{
"name": "Cedric the Valiant",
"description": "Knight with unmatched valor",
"perSec": 43,
"clickAdd": 43,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Cedric_the_Valiant.png",
"tier": 5
},
{
"name": "Raven the Silent",
"description": "Stealthy assassin with deadly skills",
"perSec": 44,
"clickAdd": 44,
"scoreMultiplier": 1.9,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Raven_the_Silent.png",
"tier": 5
},
{
"name": "Lyra the Stardancer",
"description": "Mystic with power over stars",
"perSec": 45,
"clickAdd": 45,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Lyra_the_Stardancer.png",
"tier": 5
},
{
"name": "Eldrin the Sage",
"description": "Sage with ancient wisdom",
"perSec": 46,
"clickAdd": 46,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Eldrin_the_Sage.png",
"tier": 5
},
{
"name": "Orion the Hunter",
"description": "Hunter with unparalleled skill",
"perSec": 47,
"clickAdd": 47,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Orion_the_Hunter.png",
"tier": 5
},
{
"name": "Thalia the Sunseeker",
"description": "Seeker of the sun's power",
"perSec": 48,
"clickAdd": 48,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Thalia_the_Sunseeker.png",
"tier": 5
},
{
"name": "Zephyr the Windcaller",
"description": "Caller of the winds",
"perSec": 49,
"clickAdd": 49,
"scoreMultiplier": 2,
"isObtained": true,
"memberAmount": 1,
"texturePath": "res://Images/Members/Zephyr_the_Windcaller.png",
"tier": 5
}
]
}