1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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,80 @@
import { Card } from '../../../interfaces'
import Set from '../Yellow A Alternate'
const card: Card = {
name: {
en: "Articuno-GX",
fr: "Artikodin-GX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
144,
],
hp: 170,
types: [
"Water",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Legendary Ascent",
fr: "Ascension Légendaire",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may switch it with your Active Pokémon. If you do, move any number of Water Energy from your other Pokémon to this Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez léchanger avec votre Pokémon Actif. Dans ce cas, déplacez autant dÉnergies Water que vous voulez de vos autres Pokémon vers ce Pokémon.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Ice Wing",
fr: "Aile Glace",
},
damage: 130,
},
{
cost: [
"Water",
],
name: {
en: "Cold Crush-GX",
fr: "Écraser Net-GX",
},
effect: {
en: "Discard all Energy from both Active Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Défaussez toute lÉnergie des deux Pokémon Actifs. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
}
export default card