1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49: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,73 @@
import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Articuno",
fr: "Artikodin",
},
illustrator: "Yusuke Ohmura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
144,
],
hp: 110,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Blizzard Veil",
fr: "Voile Blizzard",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, whenever your opponent plays a Supporter card from their hand, prevent all effects of that card done to your Benched Water Pokémon.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, chaque fois que votre adversaire joue une carte Supporter de sa main, évitez tous les effets de cette carte sur vos Pokémon Water de Banc.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Cold Cyclone",
fr: "Cyclone Froid",
},
effect: {
en: "Move 2 Water Energy from this Pokémon to 1 of your Benched Pokémon.",
fr: "Déplacez 2 Énergies Water de ce Pokémon vers lun de vos Pokémon de Banc.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card