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,86 @@
import { Card } from '../../../interfaces'
import Set from '../Roaring Skies'
const card: Card = {
name: {
en: "Articuno",
fr: "Artikodin",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
144,
],
hp: 120,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ancient Trait",
name: {
fr: "Plus Δ",
},
effect: {
fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts d'une attaque de ce Pokémon, récupérez une carte Récompense supplémentaire.",
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Chilling Sigh",
fr: "Soupir Polaire",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Tri Edge",
fr: "Triple Tranchant",
},
effect: {
en: "Flip 3 coins. This attack does 40 more damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card