1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Suicune",
fr: "Suicune",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
245,
],
hp: 110,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Frozen Flow",
fr: "Flot Gelé",
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez demander à votre adversaire déchanger son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Aurora Gain",
fr: "Puissance Boréale",
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card