1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/assets/data/cards.js

732 lines
14 KiB
JavaScript
Raw Normal View History

2015-06-13 19:36:02 +00:00
/**
* types
* 0 close combat
* 1 ranged
* 2 siege
* 3 leader
* 4 special (decoy)
* 5 weather
*/
module.exports = {
"redanian_foot_soldier": {
name: "Redanian Foot Soldier",
power: 1,
ability: null,
img: "foot_soldier1",
faction: "Northern Realm",
type: 0
},
"poor_fucking_infantry": {
name: "Poor Fucking Infantry",
power: 1,
ability: "tight_bond",
img: "infantry",
faction: "Northern Realm",
type: 0
},
"yarpen_zigrin": {
name: "Yarpen Zigrin",
2015-06-18 18:33:08 +00:00
power: 2,
2015-06-13 19:36:02 +00:00
ability: null,
img: "yarpen",
faction: "Northern Realm",
type: 0
},
"blue_stripes_commando": {
name: "Blue Stripes Commando",
power: 4,
ability: "tight_bond",
img: "commando",
faction: "Northern Realm",
type: 0
},
"sigismunt_dijkstra": {
name: "Sigismunt Dijkstra",
power: 4,
ability: "spy",
img: "dijkstra",
faction: "Northern Realm",
type: 0
},
"prince_stennis": {
name: "Prince Stennis",
power: 5,
ability: "spy",
img: "stennis",
faction: "Northern Realm",
type: 0
},
"siegfried_of_denesle": {
name: "Siegfried of Denesle",
power: 5,
ability: null,
img: "siegfried",
faction: "Northern Realm",
type: 0
},
"ves": {
name: "Ves",
power: 5,
ability: null,
img: "ves",
faction: "Northern Realm",
type: 0
},
"vernon_roche": {
name: "Vernon Roche",
power: 10,
ability: "hero",
img: "roche",
faction: "Northern Realm",
type: 0
},
"john_natalis": {
name: "John Natalis",
power: 10,
ability: "hero",
img: "natalis",
faction: "Northern Realm",
type: 0
},
"sheldon_skaggs": {
name: "Sheldon Skaggs",
power: 4,
ability: null,
img: "skaggs",
faction: "Northern Realm",
type: 1
},
"sabrina_glevissig": {
name: "Sabrina Glevissig",
power: 4,
ability: null,
img: "sabrina",
faction: "Northern Realm",
type: 1
},
"crinfrid_reavers_dragon_hunter": {
name: "Crinfrid Reaver's Dragon Hunter",
power: 5,
ability: "tight_bond",
img: "crinfrid",
faction: "Northern Realm",
type: 1
},
"sile_de_tansarville": {
name: "Síle de Tansarville",
power: 5,
ability: null,
img: "sile",
faction: "Northern Realm",
type: 1
},
"keira_metz": {
name: "Keira Metz",
power: 5,
ability: null,
img: "keira",
faction: "Northern Realm",
type: 1
},
"dethmold": {
name: "Dethmold",
power: 6,
ability: null,
img: "dethmold",
faction: "Northern Realm",
type: 1
},
"kaedweni_siege_expert": {
name: "Kaedweni Siege Expert",
power: 1,
ability: "morale_boost",
img: "siege_expert1",
faction: "Northern Realm",
type: 2
},
"dun_banner_medic": {
name: "Dun Banner Medic",
power: 5,
ability: "medic",
img: "medic",
faction: "Northern Realm",
type: 2
},
"ballista": {
name: "Ballista",
power: 6,
ability: null,
img: "ballista1",
faction: "Northern Realm",
type: 2
},
"trebuchet": {
name: "Trebuchet",
power: 6,
ability: null,
img: "trebuchet1",
faction: "Northern Realm",
type: 2
},
"thaler": {
name: "Thaler",
power: 1,
ability: "spy",
img: "thaler",
faction: "Northern Realm",
type: 2
},
"foltest_king_of_temeria": {
name: "Foltest: King of Temeria",
2015-06-17 19:18:14 +00:00
power: -1,
2015-06-13 19:36:02 +00:00
ability: "foltest_leader1",
img: "foltest_king",
faction: "Northern Realm",
type: 3
},
"decoy": {
name: "Decoy",
2015-06-17 19:18:14 +00:00
power: -1,
2015-06-13 19:36:02 +00:00
ability: "decoy",
img: "decoy",
faction: null,
type: 4
},
"impenetrable_fog": {
name: "Impenetrable Fog",
2015-06-17 19:18:14 +00:00
power: -1,
2015-06-13 19:36:02 +00:00
ability: "weather_fog",
img: "fog",
faction: null,
type: 5
2015-06-18 18:33:08 +00:00
},
"francesca_pureblood_elf": {
name: "Francesca, Pureblood Elf",
power: -1,
ability: "francesca_leader1",
img: "francesca_pureblood",
faction: "Scoia'tael",
type: 3
},
"francesca_the_beautiful": {
name: "Francesca The Beautiful",
power: -1,
ability: "francesca_leader2",
img: "francesca_beatiful",
faction: "Scoia'tael",
type: 3
},
"francesca_daisy_of_the_valley": {
name: "Francesca, Daisy of The Valley",
power: -1,
ability: "francesca_leader3",
img: "francesca_daisy",
faction: "Scoia'tael",
type: 3
},
"francesca_queen_of_dol_blathanna": {
name: "Francesca, Queen of Dol Blathanna",
power: -1,
ability: "francesca_leader4",
img: "francesca_queen",
faction: "Scoia'tael",
type: 3
},
"saesenthessis": {
name: "Saesenthessis",
power: 10,
ability: "hero",
img: "saesenthessis",
faction: "Scoia'tael",
type: 1
},
"iorveth": {
name: "Iorveth",
2015-06-18 18:48:06 +00:00
power: 10,
2015-06-18 18:33:08 +00:00
ability: "hero",
img: "iorveth",
faction: "Scoia'tael",
type: 1
},
"isengrim_faoiltiarnah": {
name: "Isengrim Faoiltiarnah",
power: 10,
ability: ["hero", "morale_boost"],
img: "isengrim",
faction: "Scoia'tael",
type: 0
},
"eithne": {
name: "Eithne",
power: 10,
ability: "hero",
img: "eithne",
faction: "Scoia'tael",
type: 1
},
"havekar_healer": {
name: "Havekar Healer",
power: 0,
ability: "morale_boost",
img: "healerr",
faction: "Scoia'tael",
type: 1
},
"riordain": {
name: "Riordain",
power: 1,
ability: null,
img: "riordain",
faction: "Scoia'tael",
type: 1
},
"toruviel": {
name: "Toruviel",
power: 2,
ability: null,
img: "toruviel",
faction: "Scoia'tael",
type: 1
},
"elven_skirmisher": {
name: "Elven Skirmisher",
power: 2,
ability: "muster",
img: "elven_skirmisher2",
faction: "Scoia'tael",
type: 1
},
"dwarven_skirmisher": {
name: "Dwarven Skirmisher",
power: 3,
ability: "muster",
img: "skirmisher2",
faction: "Scoia'tael",
type: 0
},
"ciaran_aep_easnillien": {
name: "Ciaran aep Easnillien",
power: 3,
ability: "agile",
img: "easnillien",
faction: "Scoia'tael",
type: 1
},
"vrihedd_brigade_recruit": {
name: "Vrihedd Brigade Recruit",
power: 4,
ability: null,
img: "recruit",
faction: "Scoia'tael",
type: 1
},
"dol_blathanna_archer": {
name: "Dol Blathanna Archer",
power: 4,
ability: null,
img: "archer",
faction: "Scoia'tael",
type: 1
},/*
"hav_caaren_medic": {
name: "Havcaaren Medic",
power: 5,
ability: null,
img: "", //missing image
faction: "Scoia'tael",
type: 0
},*/
"havekar_smuggler": {
name: "Havekar Smuggler",
power: 5,
ability: "spy",
img: "smuggler1",
faction: "Scoia'tael",
type: 0
},
"mahakaman_defender": {
name: "Mahakaman Defender",
power: 5,
ability: "muster",
img: "defender2",
faction: "Scoia'tael",
type: 0
},
"vrihedd_brigade_veteran": {
name: "Vrihedd Brigade Veteran",
power: 5,
ability: "agile",
img: "veteran1",
faction: "Scoia'tael",
type: 0
},
"dennis_cranmer": {
name: "Dennis Cranmer",
power: 6,
ability: null,
img: "cranmer",
faction: "Scoia'tael",
type: 0
},
"filavandrel_aen_fidhail": {
name: "Filavandrel aén Fidháil",
power: 6,
ability: "agile",
img: "fidhail",
faction: "Scoia'tael",
type: 1
},
"ida_emean_aep_sivney": {
name: "Ida Emean aep Sivney",
power: 6,
ability: null,
img: "sivney",
faction: "Scoia'tael",
type: 1
},
"yaevinn": {
name: "Yaevinn",
power: 6,
ability: "agile",
img: "yaevinn",
faction: "Scoia'tael",
type: 0
},
"barclay_els": {
name: "Barclay Els",
power: 6,
ability: "agile",
img: "barclay",
faction: "Scoia'tael",
type: 0
},
"dol_blathanna_scout": {
name: "Dol Blathanna Scout",
power: 6,
ability: "agile",
img: "scout2",
faction: "Scoia'tael",
type: 0
},
"milva": {
name: "Milva",
power: 10,
ability: "morale_boost",
img: "milva",
faction: "Scoia'tael",
type: 1
2015-06-18 19:49:26 +00:00
},
"eredin_commander_of_the_red_riders": {
name: "Eredin, Commander of the Red Riders",
power: -1,
ability: "eredin_leader1",
img: "eredin_commander",
faction: "Monster",
type: 3
},
"eredin_bringer_of_death": {
name: "Eredin, Bringer of Death",
power: -1,
ability: "eredin_leader2",
img: "eredin_bringer",
faction: "Monster",
type: 3
},
"eredin_destroyer_of_worlds": {
name: "Eredin, Destroyer of Worlds",
power: -1,
ability: "eredin_leader3",
img: "eredin_destroyer",
faction: "Monster",
type: 3
},
"eredin_king_of_the_wild_hunt": {
name: "Eredin, King of The Wild Hunt",
power: -1,
ability: "eredin_leader4",
img: "eredin_king",
faction: "Monster",
type: 3
},
"kayran": {
name: "Kayran",
power: 8,
ability: ["hero", "morale_boost"],
img: "kayran",
faction: "Monster",
type: 1
},
"leshen": {
name: "Leshen",
power: 10,
ability: "hero",
img: "leshen",
faction: "Monster",
type: 1
},
"imlerith": {
name: "Imlerith",
power: 10,
ability: "hero",
img: "imlerith",
faction: "Monster",
type: 0
},
"draug": {
name: "Draug",
power: 10,
ability: "hero",
img: "draug",
faction: "Monster",
type: 0
},
"ghoul": {
name: "Ghoul",
power: 1,
ability: "muster",
img: "ghoul1",
faction: "Monster",
type: 0
},
"nekker": {
name: "Nekker",
power: 2,
ability: "muster",
img: "nekker",
faction: "Monster",
type: 0
},
"wyvern": {
name: "Wyvern",
power: 2,
ability: null,
img: "wyvern",
faction: "Monster",
type: 1
},
"foglet": {
name: "Foglet",
power: 2,
ability: null,
img: "foglet",
faction: "Monster",
type: 0
},
"celaeno_harpy": {
name: "Celaeno Harpy",
power: 2,
ability: null,
img: "celaeno_harpy",
faction: "Monster",
type: 1
},
"gargoyle": {
name: "Gargoyle",
power: 2,
ability: null,
img: "gargoyle",
faction: "Monster",
type: 1
},
"cockatrice": {
name: "Cockatrice",
power: 2,
ability: null,
img: "cockatrice",
faction: "Monster",
type: 1
},
"harpy": {
name: "Harpy",
power: 2,
ability: "agile",
img: "harpy",
faction: "Monster",
type: 1
},
"endrega": {
name: "Endrega",
power: 2,
ability: null,
img: "endrega",
faction: "Monster",
type: 1
},
"vampire_bruxa": {
name: "Vampire: Bruxa",
power: 4,
ability: "muster",
img: "vampire_bruxa",
faction: "Monster",
type: 0
},
"vampire_fleder": {
name: "Vampire: Fleder",
power: 4,
ability: "muster",
img: "vampire_fleder",
faction: "Monster",
type: 0
},
"vampire_garkain": {
name: "Vampire: Garkain",
power: 4,
ability: "muster",
img: "vampire_garkain",
faction: "Monster",
type: 0
},
"vampire_ekimmara": {
name: "Vampire: Ekimmara",
power: 4,
ability: "muster",
img: "vampire_ekimmara",
faction: "Monster",
type: 0
},
"arachas": {
name: "Arachas",
power: 4,
ability: "muster",
img: "arachas1",
faction: "Monster",
type: 0
},
"botchling": {
name: "Botchling",
power: 4,
ability: null,
img: "botchling",
faction: "Monster",
type: 0
},
"forktail": {
name: "Forktail",
power: 5,
ability: null,
img: "forktail",
faction: "Monster",
type: 0
},
"plague_maiden": {
name: "Plague Maiden",
power: 5,
ability: null,
img: "forktail",
faction: "Monster",
type: 0
},
"griffin": {
name: "Griffin",
power: 5,
ability: null,
img: "griffin",
faction: "Monster",
type: 0
},
"werewolf": {
name: "Werewolf",
power: 5,
ability: null,
img: "werewolf",
faction: "Monster",
type: 0
},
"frightener": {
name: "Frightener",
power: 5,
ability: null,
img: "frightener",
faction: "Monster",
type: 0
},
"ice_giant": {
name: "Ice Giant",
power: 5,
ability: null,
img: "ice_giant",
faction: "Monster",
type: 2
},
"grave_hag": {
name: "Grave Hag",
power: 5,
ability: null,
img: "grave_hag",
faction: "Monster",
type: 1
},
/*"vampire_katakan": {
name: "Vampire: Katakan",
power: 5,
ability: "muster",
img: "vampire_katakan",
faction: "Monster",
type: 0
},*/
"crone_whispess": {
name: "Crone: Whispess",
power: 6,
ability: "muster",
img: "crone_whispess",
faction: "Monster",
type: 0
},
"crone_brewess": {
name: "Crone: Brewess",
power: 6,
ability: "muster",
img: "crone_brewess",
faction: "Monster",
type: 0
},
"crone_weavess": {
name: "Crone: Weavess",
power: 6,
ability: "muster",
img: "crone_weavess",
faction: "Monster",
type: 0
},
"arachas_behemoth": {
name: "Arachas Behemoth",
power: 6,
ability: "muster",
img: "arachas_behemoth",
faction: "Monster",
type: 2
},
"fire_elemental": {
name: "Fire Elemental",
power: 6,
ability: null,
img: "fire_elemental",
faction: "Monster",
type: 2
},
"fiend": {
name: "Fiend",
power: 6,
ability: null,
img: "fiend",
faction: "Monster",
type: 0
},
"earth_elemental": {
name: "Earth Elemental",
power: 6,
ability: null,
img: "earth_elemental",
faction: "Monster",
type: 2
2015-06-13 19:36:02 +00:00
}
}