mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 20:51:57 +00:00
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets Signed-off-by: Avior <github@avior.me> * fix: Add DP, DP Black Star and Mysterious Treasures Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Deoxys Normal Forme",
|
||||
fr: "Deoxys Forme Normale",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
386,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -48,10 +52,11 @@ const card: Card = {
|
||||
en: "Does 20 damage plus 10 more damage for each Energy attached to all of your opponent's Pokémon.",
|
||||
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vient d'un virus extraterrestre arrivé avec une météorite et ayant subi une mutation génétique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Metagross",
|
||||
fr: "Metalosse",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
376,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Metang",
|
||||
fr: "Metang",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@@ -33,10 +38,11 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. This power can't be used if Metagross is affected by a Special Condition.",
|
||||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, échangez 1 des Pokémon de Banc de votre adversaire avec 1 des Pokémon Défenseurs. Ce pouvoir ne peut pas être utilisé si Mammochon est affecté par un État Spécial.",
|
||||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, échangez 1 des Pokémon de Banc de votre adversaire avec 1 des Pokémon Défenseurs. Ce pouvoir ne peut pas être utilisé si Metalosse est affecté par un État Spécial.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,28 +56,32 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, Metagross's Extra Comet Punch attack's base damage is 100.",
|
||||
fr: "Lors de votre prochain tour, les dégâts de base de l'attaque Poing météore de Mammochon sont de 100.",
|
||||
fr: "Lors de votre prochain tour, les dégâts de base de l'attaque Poing météore de Metalosse sont de 100.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est né de la fusion de plusieurs Métang. Ses quatre cerveaux en font l'égal d'un superordinateur."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Hitmonlee",
|
||||
fr: "Kicklee",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
106,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,6 +56,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -63,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses pattes élastiques s'allongent, ce qui ne manque jamais de surprendre au premier combat."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Hitmontop",
|
||||
fr: "Kapoera",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
237,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -36,7 +38,7 @@ const card: Card = {
|
||||
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -57,6 +59,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -66,8 +69,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il combat en tournoyant comme une toupie. La force centrifuge décuple sa puissance destructrice."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Horsea",
|
||||
fr: "Hypotrempe",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
116,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -62,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il niche à l'ombre du corail. Quand il se sent menacé, il disparaît dans un nuage d'encre opaque."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Houndour",
|
||||
fr: "Malosse",
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
228,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,22 +52,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il exprime ses émotions en modulant son cri. Ce Pokémon rusé chasse en meute pour abattre ses proies."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Ledyba",
|
||||
fr: "Coxy",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
165,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,22 +56,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est si timide qu'il ne se déplace qu'au milieu d'un essaim. Il exprime ses émotions par l'odeur."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Lileep",
|
||||
fr: "Lilia",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
345,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Root Fossil",
|
||||
fr: "Wurzelfossil",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -32,7 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Astonish",
|
||||
fr: "Etonnément",
|
||||
fr: "Étonnement",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 card from your opponent's hand without looking. Look at that card you chose, then have your opponent shuffle that card into his or her deck.",
|
||||
@@ -58,6 +62,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -67,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vivait au fond de la mer il y a 100 millions d'années. La science a permis de le ressusciter."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Meowth",
|
||||
fr: "Miaouss",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
52,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,10 +53,11 @@ const card: Card = {
|
||||
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -64,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son regard s'anime à la vue d'un objet brillant. C'est un Pokémon nocturne."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Misdreavus",
|
||||
fr: "Feuforeve",
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
200,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -47,26 +49,30 @@ const card: Card = {
|
||||
en: "If your opponent has only 1 Prize card left, this attack does 10 damage plus 20 more damage.",
|
||||
fr: "S'il ne reste à votre adversaire qu'1 carte Récompense, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il adore se faufiler derrière les gens la nuit pour les effrayer avec son cri strident."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Nincada",
|
||||
fr: "Ningale",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
290,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,6 +52,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -59,8 +62,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il grandit sous terre et se repère grâce à ses antennes car ses yeux sont quasiment aveugles."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Nosepass",
|
||||
fr: "Tarinor",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
299,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -48,10 +50,11 @@ const card: Card = {
|
||||
en: "If Probopass is on your Bench, this attack does 20 damage plus 20 more damage.",
|
||||
fr: "Si Tarinorme se trouve sur votre Banc, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -61,8 +64,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son nez est un aimant, c'est pourquoi ce Pokémon fait toujours face au nord."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Mewtwo",
|
||||
fr: "Mewtwo",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
150,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -56,6 +58,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -65,8 +68,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon conçu en réorganisant les gènes de Mew. On raconte qu'il s'agit du Pokémon le plus féroce."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Numel",
|
||||
fr: "Chamallot",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
322,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -62,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son dos bosse renferme une lave bouillonnante. Elle refroidit par temps de pluie, ce qui le ralentit."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Oddish",
|
||||
fr: "Mystherbe",
|
||||
},
|
||||
|
||||
illustrator: "Hiroki Fuchino",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
43,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -62,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "En journée, il plante ses piedsracines dans le sol. La nuit, il se promène en semant des graines."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Oddish",
|
||||
fr: "Mystherbe",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
43,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +53,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +63,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "En journée, il plante ses piedsracines dans le sol. La nuit, il se promène en semant des graines."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -4,7 +4,7 @@ import Set from '../Legends Awakened'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pineco",
|
||||
fr: "Pompedik",
|
||||
fr: "Pomdepik",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Politoed",
|
||||
fr: "Tarpaud",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
186,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Poliwhirl",
|
||||
fr: "Quaputzi",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,10 +57,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 40 damage plus 40 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@@ -64,8 +71,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rassemble ses pairs pour les commander. Il utilise son cri pour diriger Ptitard."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Probopass",
|
||||
fr: "Tarinorme",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
476,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nosepass",
|
||||
fr: "Nasgnet",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -56,6 +62,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -65,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son corps libère une puissante force magnétique. Il dirige trois petites unités appelées Mini-nez."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Rayquaza",
|
||||
fr: "Rayquaza",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
384,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,22 +58,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit dans la couche d'ozone, au-dessus des nuages. Il est invisible depuis le sol."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Regigigas",
|
||||
fr: "Regigigas",
|
||||
},
|
||||
|
||||
illustrator: "Ryo Ueda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
486,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,6 +58,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -63,8 +68,9 @@ const card: Card = {
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une légende tenace veut que ce Pokémon ait traîné les continents en les attachant à des cordes."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Spiritomb",
|
||||
fr: "Spiritomb",
|
||||
},
|
||||
|
||||
illustrator: "Ryo Ueda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
442,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -57,10 +61,12 @@ const card: Card = {
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon composé de 108 esprits. Il provient d'une fissure dans une clé de voûte étrange."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Yanmega",
|
||||
fr: "Yanmega",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
469,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Yanma",
|
||||
fr: "Yanma",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,16 +58,18 @@ const card: Card = {
|
||||
en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 60 damage plus 20 more damage and switch Yanmega with 1 of your Benched Pokémon.",
|
||||
fr: "Si le Pokémon Défenseur possède au moins 2 marqueurs de dégât, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires. Échangez Yanmega avec 1 des Pokémon de votre Banc.",
|
||||
},
|
||||
damage: 60,
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -71,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les ondes de choc qu'il génère en battant des ailes infligent de graves blessures internes."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Armaldo",
|
||||
fr: "Armaldo",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
348,
|
||||
],
|
||||
|
||||
hp: 140,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Anorith",
|
||||
fr: "Anorith",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -56,6 +62,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@@ -65,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il a gagné la côte après son évolution. Une armure robuste recouvre son corps."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Azelf",
|
||||
fr: "Créfadet",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
482,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On l'appelle \"être de la volonté\". Il dort au fond d'un lac pour maintenir l'équilibre du monde."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Dragonite",
|
||||
fr: "Dracolosse",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
149,
|
||||
],
|
||||
|
||||
hp: 140,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dragonair",
|
||||
fr: "Dragonir",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -61,22 +65,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On raconte qu'il vit quelque part en mer. Il guide les équipages naufragés jusqu'à la terre ferme."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Bellossom",
|
||||
fr: "Joliflor",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
182,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gloom",
|
||||
fr: "Duflor",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,26 +58,30 @@ const card: Card = {
|
||||
en: "Does 40 damage plus 20 more damage for each Vileplume and each Bellossom you have in play. Flip a coin. If heads, the Defending Pokémon is now Burned.",
|
||||
fr: "Inflige 40 dégâts plus 20 dégâts supplémentaires pour chaque Rafflesia et chaque Joliflor que vous avez en jeu. Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "À la fin de la saison des pluies, il sort danser en plein air, attiré par la chaleur du soleil."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Cradily",
|
||||
fr: "Vacilys",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
346,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Lileep",
|
||||
fr: "Liliep",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -59,6 +63,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -68,8 +73,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit dans les hauts-fonds des mers chaudes. Il déterre sa proie du sable quand la marée se retire."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Crawdaunt",
|
||||
fr: "Colhomard",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
342,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Corphish",
|
||||
fr: "Krebscorps",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -55,26 +59,30 @@ const card: Card = {
|
||||
en: "If Crawdaunt has a Technical Machine card attached to it, this attack does 50 damage plus 30 more damage.",
|
||||
fr: "Si Colhomard possède une carte Machine Technique, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "C'est un voyou qui utilise ses pinces pour chasser les autres Pokémon hors de sa mare."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Delcatty",
|
||||
fr: "Delcatty",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
301,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Skitty",
|
||||
fr: "Eneco",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,6 +60,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -63,8 +70,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les femmes Dresseurs raffolent de sa sublime fourrure. Il ne possède pas de nid."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Deoxys Attack Forme",
|
||||
fr: "Deoxys Forme Attaque",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
386,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +57,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vient d'un virus extraterrestre arrivé avec une météorite et ayant subi une mutation génétique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Deoxys Defense Forme",
|
||||
fr: "Deoxys Forme Défense",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
386,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +57,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vient d'un virus extraterrestre arrivé avec une météorite et ayant subi une mutation génétique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Deoxys Speed Forme",
|
||||
fr: "Deoxys Forme Vitesse",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
386,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -58,10 +63,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vient d'un virus extraterrestre arrivé avec une météorite et ayant subi une mutation génétique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Ditto",
|
||||
fr: "Metamorph",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
132,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@@ -44,8 +47,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il a la capacité de modifier sa structure cellulaire pour prendre l'apparence de ce qu'il voit."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Forretress",
|
||||
fr: "Forretress",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
205,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pineco",
|
||||
fr: "Tannza",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -57,22 +63,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est prisonnier d'une coquille d'acier. Ses yeux vigilants sont la seule partie visible de son corps."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Groudon",
|
||||
fr: "Groudon",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
383,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -53,22 +55,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il dormait dans le magma souterrain depuis sa lutte féroce contre Kyogre, il a longtemps de cela."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Froslass",
|
||||
fr: "Momartik",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
478,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Snorunt",
|
||||
fr: "Schneppke",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -32,7 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Destiny Bond",
|
||||
fr: "Destiny Bond",
|
||||
fr: "Prlvt Destin",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard a Psychic Energy attached to Froslass. During your opponent's next turn, if Froslass would be Knocked Out by damage from an attack, the Attacking Pokémon is Knocked Out.",
|
||||
@@ -57,6 +61,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
@@ -66,8 +71,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Momartik gèle ses ennemis grâce à son souffle à -50°C. Ça ne se voit pas, mais son corps est creux."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Heatran",
|
||||
fr: "Heatran",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
485,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -49,10 +53,11 @@ const card: Card = {
|
||||
en: "Flip a coin for each Metal Energy attached to Heatran. This attack does 40 damage plus 20 more damage for each heads.",
|
||||
fr: "Lancez une pièce pour chaque Énergie Metal attachée à Heatran. Cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires pour chaque face.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il hante les grottes volcaniques. Il rampe au mut et au plafond grâce à ses pieds en forme de croix."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Jirachi",
|
||||
fr: "Jirachi",
|
||||
},
|
||||
|
||||
illustrator: "Satoshi Ohta",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
385,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -51,22 +53,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On raconte qu'une fois tous les mille ans, il a la capacité d'exaucer tous les vœux durant une semaine."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Kyogre",
|
||||
fr: "Kyogre",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
382,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -53,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -62,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On dit qu'il a fait monter les eaux en causant des pluies diluviennes. Il somnolait dans une fosse marine."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Lopunny",
|
||||
fr: "Lockpin",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
428,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Buneary",
|
||||
fr: "Haspiror",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -63,10 +69,11 @@ const card: Card = {
|
||||
en: "If the Defending Pokémon is an Evolved Pokémon, this attack does 30 damage plus 30 more damage.",
|
||||
fr: "Si le Pokémon Défenseur est un Pokémon Évolué, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -76,8 +83,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon extrêmement prudent. Il couvre son corps de ses oreilles pelucheuses en cas de danger."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Mesprit",
|
||||
fr: "Créfollet",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
481,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -48,10 +52,11 @@ const card: Card = {
|
||||
en: "If you have the same number of cards in your hand as your opponent, this attack does 20 damage plus 50 more damage.",
|
||||
fr: "Si vous avez autant de cartes en main que votre adversaire, cette attaque inflige 20 dégâts plus 50 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On l'appelle \"être de l'émotion\". Il enseigne aux hommes la beauté de la tristesse, la douleur de la joie."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Poliwrath",
|
||||
fr: "Tartard",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
62,
|
||||
],
|
||||
|
||||
hp: 130,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Poliwhirl",
|
||||
fr: "Quaputzi",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -59,6 +63,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -68,8 +73,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il possède de sacrés biscoteaux. Il peut parcourir sans relâche l'Océan Pacifique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Regice",
|
||||
fr: "Regice",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
378,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +57,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son corps est fait de glace datant de l'ère glaciaire. Il contrôle un air gelé de -200 °C."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Regigigas",
|
||||
fr: "Regigigas",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
486,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -49,10 +53,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 60 damage plus 20 more damage and does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires et inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 60,
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une légende tenace veut que ce Pokémon ait traîné les continents en les attachant à des cordes."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Regirock",
|
||||
fr: "Regirock",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
377,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -49,10 +53,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 40 damage plus 30 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Tout son corps est fait de roche. S'il s'ébrèche au combat, il utilise des pierres pour le réparer."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Registeel",
|
||||
fr: "Registeel",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
379,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,22 +57,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son corps invulnérable fut forgé par la pression souterraine durant des dizaines de milliers d'années."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Giratina",
|
||||
fr: "Giratina",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
487,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,28 +53,32 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "Does 50 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
|
||||
fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur le Pokémon Défenseur.",
|
||||
fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur le Pokémon Défenseur.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon censé vivre dans un monde à l'opposé du nôtre. Il apparaît dans un cimetière ancien."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Shedinja",
|
||||
fr: "Munja",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
292,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nincada",
|
||||
fr: "Ningale",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,11 +60,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une carapace d'insecte laissée à l'abandon. On dit qu'il vole l'âme de celui qui regarde à l'intérieur."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Torkoal",
|
||||
fr: "Chartor",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
324,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -52,6 +56,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il tire son énergie du charbon qu'il brûle dans sa carapace et crache de la suie noire en cas de danger."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown !",
|
||||
fr: "Zarbi !",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -47,10 +51,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage. If tails, Unown ! does 10 damage to itself, and this attack's damage isn't affected by Weakness or Resistance.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Zarbi ! s'inflige 10 dégâts et les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Uxie",
|
||||
fr: "Créhelf",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
480,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On l'appelle \"être du savoir\". On raconte que son regard a le pouvoir d'effacer la mémoire."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Victreebel",
|
||||
fr: "Empiflor",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
71,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Weepinbell",
|
||||
fr: "Ultrigaria",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -56,6 +60,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -65,8 +70,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Sa bouche sécrète un fluide à l'odeur du miel, qui s'avère être un acide extrêmement corrosif."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Vileplume",
|
||||
fr: "Rafflesia",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
45,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gloom",
|
||||
fr: "Duflor",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -56,6 +62,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -65,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses pétales sont les plus grands du monde. Il marche en répandant un pollen extrêmement allergène."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Anorith",
|
||||
fr: "Anorith",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
347,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Claw Fossil",
|
||||
fr: "Klauenfossil",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,10 +58,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@@ -67,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un ancêtre Pokémon réanimé à partir d'un fossile. Il vivait en mer et chassait avec ses pinces."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Camerupt",
|
||||
fr: "Camerupt",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
323,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Numel",
|
||||
fr: "Camaub",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -39,7 +43,7 @@ const card: Card = {
|
||||
en: "Each player discards the top card of his or her deck. This attack does 30 damage plus 30 more damage for each Energy card discarded in this way.",
|
||||
fr: "Chaque joueur défausse la carte du dessus de son deck. Cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires pour chaque carte Énergie défaussée de cette façon.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -60,6 +64,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -69,8 +74,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il porte des volcans sur son dos. Quand le magma remonte, il frissonne et entre en éruption."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Castform",
|
||||
fr: "Morpheo",
|
||||
},
|
||||
|
||||
illustrator: "Kanako Eo",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
351,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -48,10 +52,11 @@ const card: Card = {
|
||||
en: "If you have a Stadium card in play, remove 3 damage counters from Castform. If your opponent has a Stadium card in play, this attack does 30 damage plus 30 more damage.",
|
||||
fr: "Si vous avez des cartes Stade en jeu, retirez à Morpheo 3 marqueurs de dégât. Si votre adversaire a des cartes Stade en jeu, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son aspect change avec la météo. On a récemment découvert que ses molécules étaient pareilles à l'eau."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Castform Rain Form",
|
||||
fr: "Morpheo Pluie",
|
||||
},
|
||||
|
||||
illustrator: "Emi Yoshida",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
351,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -52,6 +56,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son aspect change avec la météo. On a récemment découvert que ses molécules étaient pareilles à l'eau."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Gliscor",
|
||||
fr: "Scorvol",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
472,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gligar",
|
||||
fr: "Skorgla",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -49,28 +53,32 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is affected by a Special Condition, this attack does 40 damage plus 40 more damage.",
|
||||
fr: "Si le Pokémon Défenseur est affecté par un État Spécial, cette attaque inflige 40 dégâts plus 40 dégât supplémentaires.",
|
||||
fr: "Si le Pokémon Défenseur est affecté par un État Spécial, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il guette sa proie pendu à une branche la tête en bas, et s'en saisit à la première occasion."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Castform Snow-cloud Form",
|
||||
fr: "Morpheo Neige",
|
||||
},
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
351,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
@@ -34,23 +37,28 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hail",
|
||||
fr: "Grêle",
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
|
||||
damage: 20
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
@@ -60,8 +68,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son aspect change avec la météo. On a récemment découvert que ses molécules étaient pareilles à l'eau."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Castform Sunny Form",
|
||||
fr: "Morpheo Soleil",
|
||||
},
|
||||
|
||||
illustrator: "Lee HyunJung",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
351,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -52,6 +56,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -61,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son aspect change avec la météo. On a récemment découvert que ses molécules étaient pareilles à l'eau."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Dragonair",
|
||||
fr: "Draco",
|
||||
},
|
||||
|
||||
illustrator: "Suwama Chiaki",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
148,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dratini",
|
||||
fr: "Minidraco",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -56,10 +60,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
@@ -69,8 +74,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "La météo change brusquement lorsqu'il est entouré d'une aura. On dit qu'il peuple les mers et les lacs."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Drifblim",
|
||||
fr: "Grodrive",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
426,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Drifloon",
|
||||
fr: "Baudrive",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -59,12 +63,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
@@ -72,9 +78,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il somnole la journée et s'envole en grands groupes le soir venu. Nul ne sait où ils vont."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Exeggutor",
|
||||
fr: "Noadkoko",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
103,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute",
|
||||
fr: "Owei",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -50,10 +54,11 @@ const card: Card = {
|
||||
en: "Discard as many Energy cards as you like attached to your Pokémon. For each Energy card you discarded, flip a coin. This attack does 50 damage times the number of heads.",
|
||||
fr: "Défaussez autant de cartes Énergie attachées à votre Pokémon que vous le voulez. Pour chaque carte Énergie défaussée, lancez une pièce. Cette attaque inflige 50 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -63,8 +68,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On l'appelle \"jungle sur pattes\". Si une tête devient trop grosse, elle tombe et produit un NOEUNOEUF."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Gliscor",
|
||||
fr: "Scorvol",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
472,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gligar",
|
||||
fr: "Skorgla",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,26 +58,30 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 40 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il guette sa proie, pendu à une branche la tête en bas, et s'en saisit à la première occasion."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Grumpig",
|
||||
fr: "Groret",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
326,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Spoink",
|
||||
fr: "Spoink",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -51,10 +55,11 @@ const card: Card = {
|
||||
en: "Does 20 damage times the amount of Energy attached to Grumpig.",
|
||||
fr: "Inflige 20 dégâts multipliés par le nombre d'Énergies attachées à Groret.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -64,8 +69,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les perles noires amplifient ses pouvoirs psy. Sa danse étrange lui permet de contrôler ses ennemis."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Houndoom",
|
||||
fr: "Demolosse",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
229,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Houndour",
|
||||
fr: "Hunduster",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -70,6 +76,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -79,8 +86,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Jadis, les gens prenaient son étrange hurlement pour l'appel de la Faucheuse."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Lanturn",
|
||||
fr: "Lanturn",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
171,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chinchou",
|
||||
fr: "Lampi",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -59,6 +63,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@@ -68,8 +73,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "La lumière de LANTURN surgit des profondeurs. On le surnomme \"étoile des profondeurs\"."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Lanturn",
|
||||
fr: "Lanturn",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
171,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chinchou",
|
||||
fr: "Lampi",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -36,7 +40,7 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 30 damage to each of your opponent's Pokémon that has any Energy cards attached to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire possédant des cartes Énergie. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire possédant des cartes Énergie. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
|
||||
},
|
||||
@@ -54,10 +58,11 @@ const card: Card = {
|
||||
en: "Does 60 damage plus 10 more damage for each Water Energy attached to Lanturn.",
|
||||
fr: "Inflige 60 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Water attachée à Lanturn.",
|
||||
},
|
||||
damage: 60,
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -67,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "La lumière de LANTURN surgit des profondeurs. On le surnomme \"étoile des profondeurs\"."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Heatran",
|
||||
fr: "Heatran",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
485,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,10 +54,11 @@ const card: Card = {
|
||||
en: "You may discard as many basic Energy cards as you like attached to Heatran. If you do, this attack does 40 damage plus 20 more damage for each Energy card you discarded.",
|
||||
fr: "Vous pouvez défausser autant de cartes Énergie de base attachées à Heatran que vous le voulez. Cette attaque inflige alors 40 dégâts plus 20 dégâts supplémentaires pour chaque Énergie défaussée.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@@ -63,8 +68,9 @@ const card: Card = {
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il hante les grottes volcaniques. Il rampe au mur et au plafond grâce à ses pieds en formes de croix."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Ledian",
|
||||
fr: "Coxyclaque",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
166,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ledyba",
|
||||
fr: "Ledyba",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -38,7 +42,7 @@ const card: Card = {
|
||||
en: "Flip 4 coins. This attack does 20 damage times the number of heads.",
|
||||
fr: "Lancez 4 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -58,22 +62,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il tire sa force de la lumière des étoiles. Plus il y en a et plus ses motifs dorsaux sont grands."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Lucario",
|
||||
fr: "Lucario",
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
448,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Riolu",
|
||||
fr: "Riolu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,10 +58,11 @@ const card: Card = {
|
||||
en: "If the Defending Pokémon already has any damage counters on it, this attack does 60 damage plus 20 more damage.",
|
||||
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 60,
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -67,8 +72,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il ressent toutes les auras. Il comprend le langage humain."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Luxio",
|
||||
fr: "Luxio",
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
404,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Shinx",
|
||||
fr: "Sheinux",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -37,7 +41,7 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
@@ -60,22 +64,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "L'électricité libérée par ses griffes peut assommer l'ennemi. Il vit en petits groupes."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Marowak",
|
||||
fr: "Ossatueur",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
105,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Cubone",
|
||||
fr: "Tragosso",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,26 +58,30 @@ const card: Card = {
|
||||
en: "Flip a coin until you get tails. This attack does 50 damage times the number of heads.",
|
||||
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Cette attaque inflige 50 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ce Pokémon sauvage possède des os depuis sa naissance. Il s'en sert pour combattre avec dextérité."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Metang",
|
||||
fr: "Metang",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
375,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Beldum",
|
||||
fr: "Terhal",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -57,22 +61,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est formé de deux TERHAL soudés. Son corps de fer résiste à un choc avec un avion à réaction."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Metang",
|
||||
fr: "Metang",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
375,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Beldum",
|
||||
fr: "Terhal",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -56,26 +60,30 @@ const card: Card = {
|
||||
en: "Flip 2 coins. This attack does 40 damage plus 20 more damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires pour chaque face.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est formé de deux Terhal soudés. Son corps de fer résiste à un choc avec un avion à réaction."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Mightyena",
|
||||
fr: "Grahyena",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
262,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Poochyena",
|
||||
fr: "Fiffyen",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,26 +58,30 @@ const card: Card = {
|
||||
en: "Does 10 damage times the number of Pokémon you have in play.",
|
||||
fr: "Inflige 10 dégâts multipliés par le nombre de Pokémon que vous avez en jeu.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il traque ses proies en groupe. Il ne désobéira jamais aux ordres d'un bon Dresseur."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Ninjask",
|
||||
fr: "Ninjask",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
291,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nincada",
|
||||
fr: "Ningale",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -54,12 +60,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -67,9 +75,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il bouge si vite que l'œil a parfois du mal à le suivre. Ils se regroupent près de la sève des arbres."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Persian",
|
||||
fr: "Persian",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
53,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Meowth",
|
||||
fr: "Mauzi",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -54,10 +58,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 40 damage plus 10 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 10 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -65,10 +70,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon très snob. La taille du joyau qui orne son front alimente bien des débats parmi ses fans."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Piloswine",
|
||||
fr: "Cochignon",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
221,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Swinub",
|
||||
fr: "Quiekel",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -39,7 +43,7 @@ const card: Card = {
|
||||
en: "You may do 30 damage plus 30 more damage. If you do, Piloswine does 30 damage to itself.",
|
||||
fr: "Vous pouvez infliger 30 dégâts plus 30 dégâts supplémentaires. Cochignon s'inflige alors 30 dégâts.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -61,22 +65,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il ne voit rien à cause de sa fourrure touffue et se repère à l'aide de son nez délicat."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -36,7 +36,7 @@ const card: Card = {
|
||||
en: "Search your discard pile for as many Water Energy cards as you like, show them to your opponent, and this attack does 10 damage for each Water Energy card you chose. Put those cards on top of your deck. Shuffle your deck afterward.",
|
||||
fr: "Cherchez dans votre pile de défausse autant de cartes Énergie Water que vous le voulez et montrez-les à votre adversaire. Cette attaque inflige 10 dégâts pour chaque Énergie Water choisie. Placez ces cartes au-dessus de votre deck. Ensuite, mélangez votre deck.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -51,7 +51,7 @@ const card: Card = {
|
||||
en: "You may discard 2 cards from your hand. If you do, this attack does 40 damage plus 20 more damage and does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Vous pouvez défausser 2 cartes de votre main. Cette attaque inflige alors 40 dégâts plus 20 dégâts supplémentaires et inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Seadra",
|
||||
fr: "Hypocean",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
117,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Horsea",
|
||||
fr: "Seeper",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -38,7 +42,7 @@ const card: Card = {
|
||||
en: "You may discard up to 2 Water Energy cards from your hand. If you do, this attack does 30 damage plus 10 more damage for each Energy card you discarded.",
|
||||
fr: "Vous pouvez défausser jusqu'à 2 cartes Énergie Water de votre main. Cette attaque inflige alors 30 dégâts plus 10 dégâts supplémentaires pour chaque carte Énergie défaussée.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -56,6 +60,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -65,8 +70,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son épine dorsale le protège. Ses os et ses nageoires sont très prisés en médecine traditionnelle."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Starmie",
|
||||
fr: "Staross",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
121,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Staryu",
|
||||
fr: "Sterndu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -47,7 +51,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Core Flash",
|
||||
fr: "Flash=coeur",
|
||||
fr: "Flash-coeur",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Pokémon that has any Poké-Powers or Poké-Bodies. This attack does 50 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
@@ -56,6 +60,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -63,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un noyau rouge trône en son centre. Il envoie des signaux radio mystérieux vers le ciel nocturne."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Swalot",
|
||||
fr: "Avaltout",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
317,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gulpin",
|
||||
fr: "Schluppuck",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -60,6 +64,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -69,8 +74,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il avale tout en une bouchée. Ses follicules sécrètent des fluides toxiques qui endorment l'ennemi."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Swellow",
|
||||
fr: "Heledelle",
|
||||
},
|
||||
|
||||
illustrator: "Suwama Chiaki",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
277,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Taillow",
|
||||
fr: "Schwalbini",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -55,22 +61,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vole en cercle en quête d'une proie. Dès qu'il l'a repérée, il fond sur elle en un éclair."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Tauros",
|
||||
fr: "Tauros",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
128,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -36,7 +38,7 @@ const card: Card = {
|
||||
en: "Flip a coin for each Tauros you have in play. This attack does 20 damage times the number of heads.",
|
||||
fr: "Lancez une pièce pour chaque Tauros que vous avez en jeu. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
{
|
||||
@@ -53,10 +55,11 @@ const card: Card = {
|
||||
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage. If tails, Tauros does 10 damage to itself.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires. Si c'est pile, Tauros s'inflige 10 dégâts.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -66,8 +69,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Après avoir choisi sa cible, il fonce dessus tête baissée. Il est réputé pour sa nature violente."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Tentacruel",
|
||||
fr: "Tentacruel",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
73,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tentacool",
|
||||
fr: "Tentacha",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@@ -56,6 +60,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@@ -65,8 +70,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses 80 tentacules ligotent ses proies et les retiennent jusqu'à ce que son poison fasse effet."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown J",
|
||||
fr: "Zarbi J",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown R",
|
||||
fr: "Zarbi R",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -48,6 +52,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -57,8 +62,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown U",
|
||||
fr: "Zarbi U",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,6 +54,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -59,8 +64,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de Zarbi est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown V",
|
||||
fr: "Zarbi V",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Luxray",
|
||||
fr: "Luxray",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
405,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Luxio",
|
||||
fr: "Luxio",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
@@ -37,6 +42,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -72,12 +78,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@@ -85,9 +93,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses yeux voient à travers tout. Il repère les proies cachées derrière un objet pour les capturer."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown W",
|
||||
fr: "Zarbi W",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +57,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -62,8 +67,9 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown Y",
|
||||
fr: "Zarbi Y",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -60,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de Zarbi est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Unown ?",
|
||||
fr: "Zarbi ?",
|
||||
},
|
||||
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@@ -48,6 +52,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@@ -57,8 +62,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il rappelle une écriture ancienne. Reste à savoir qui du langage ou de ZARBI est apparu en premier."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,15 +6,18 @@ const card: Card = {
|
||||
en: "Beldum",
|
||||
fr: "Terhal",
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
374,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
@@ -34,6 +37,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -52,22 +56,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il dialogue avec les siens par impulsions magnétiques. En bande, ils se déplacent à l'unisson."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Beldum",
|
||||
fr: "Terhal",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
374,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -51,22 +53,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il dialogue avec les siens par impulsions magnétiques. En bande, ils se déplacent à l'unisson."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Bellsprout",
|
||||
fr: "Chetiflor",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
69,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -53,6 +55,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@@ -62,8 +65,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il préfère les climats chauds et humides. Ses lianes peuvent capturer une proie en un clin d'œil."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Buneary",
|
||||
fr: "Laporeille",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
427,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,10 +52,11 @@ const card: Card = {
|
||||
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@@ -63,8 +66,9 @@ const card: Card = {
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il frappe l'ennemi en déroulant violemment ses oreilles. Cela peut faire pleurer un adulte."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@@ -6,22 +6,24 @@ const card: Card = {
|
||||
en: "Chinchou",
|
||||
fr: "Loupio",
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
170,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@@ -50,6 +52,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@@ -59,8 +62,9 @@ const card: Card = {
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il envoie des décharges électriques positives et négatives du bout des antennes pour paralyser sa proie."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user