mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Clefable",
|
||||
fr: "Mélodelfe"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
36,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Clefairy",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Metronome",
|
||||
fr: "Métronome"
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of the Defending Pokémon's attacks. Metronome copies that attack except for its Energy costs and anything else required in order to use that attack, such as discarding Energy cards. (No matter what type the Defending Pokémon is, Clefable's type is still Colorless.)",
|
||||
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Métronome copie cette attaque à l'exception de son coût d'Énergie et de toute autre action requise pour utiliser cette attaque, comme par exemple, défausser des cartes Énergie. (Quel que soit le type du Pokémon Défenseur, Mélodelfe demeure de type Incolore.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,19 +50,23 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Minimize",
|
||||
fr: "Lilliput"
|
||||
},
|
||||
effect: {
|
||||
en: "All damage done by attacks to Clefable during your opponent's next turn is reduce by 20 (after applying Weakness and Resistance).",
|
||||
fr: "Tous les dégâts infligés à Mélodelfe par des attaques pendant le prochain tour de votre adversaire sont réduits de 20 (après application de la Faiblesse et de la Résistance)."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -63,9 +74,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une sorte de petite fée très rare. Il se cache en apercevant un être humain."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Scyther",
|
||||
fr: "Insécateur"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
123,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Swords Dance",
|
||||
fr: "Danse-lames"
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, Scyther's Slash attack's base damage is 60 instead of 30.",
|
||||
fr: "Pendant votre prochain tour, l'attaque Tranche d'Insécateur inflige 60 dégâts de base au lieu de 30."
|
||||
},
|
||||
|
||||
},
|
||||
@ -42,18 +47,21 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Rapide et agile comme un ninja, il se déplace si vite qu'il crée l'illusion d'être en groupe."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
fr: "Ronflex"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
143,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Munchlax",
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Thick Skinned",
|
||||
fr: "Dur à cuire"
|
||||
},
|
||||
effect: {
|
||||
en: "Snorlax can't become Asleep, Confused, Paralyzed, or Poisoned. This power can't be used if Snorlax is already Asleep, Confused, or Paralyzed.",
|
||||
fr: "Ronflex ne peut pas devenir Endormi, Confus, Paralysé ou Empoisonné. Ce pouvoir ne peut être utilisé si Ronflex est déjà Endormi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -43,20 +52,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
fr: "Plaquage"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -64,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Très paresseux, il ne fait que manger et dormir. Plus il est gros, plus il devient fainéant."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Vaporeon",
|
||||
fr: "Aquali"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
134,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage plus 10 more damage for each Energy attached to Vaporeon but not used to pay for this attack's Energy cost. Extra Energy after the 2nd doesn't count.",
|
||||
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Aquali en plus du coût en Énergie de cette attaque. Les Énergies supplémentaires après la seconde ne comptent pas."
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit au bord de l'eau. Sa queue lui donne l'apparence d'une sirène."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,56 +4,72 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Venomoth",
|
||||
fr: "Aéromite"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
49,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Venonat",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Shift",
|
||||
fr: "Transmutation"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may change the type of Venomoth to the type of any other Pokémon in play other than Colorless. This power can't be used if Venomoth is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez changer le type d'Aéromite pour le type de n'importe quel Pokémon en jeu autre qu'Incolore. Ce pouvoir ne peut être utilisé si Aéromite est Endormi, Confus, ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Venom Powder",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
|
||||
fr: "Poudre venimeuse"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus et Empoisonné."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les motifs ocres de ses ailes changent en fonction de son type de poison."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Victreebel",
|
||||
fr: "Empiflor"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
71,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Weepinbell",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Lure",
|
||||
fr: "Attraction"
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and switch it with his or her Active Pokémon.",
|
||||
fr: "Si votre adversaire a des Pokémon sur son Banc, choisissez l'un d'eux et échangez-le avec son Pokémon Actif."
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Acid",
|
||||
fr: "Acide"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -58,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit en colonie dans la jungle mais personne n'en est jamais revenu vivant."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Vileplume",
|
||||
fr: "Raflésia"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
45,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gloom",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Heal",
|
||||
fr: "Soins"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, remove 1 damage counter from 1 of your Pokémon. This power can't be used if Vileplume is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, retirez 1 marqueur de dégâts d'un de vos Pokémon. Ce pouvoir ne peut être utilisé si Raflésia est Endormi, Confus, ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -42,14 +51,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Petal Dance",
|
||||
fr: "Danse-fleur"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 40 damage times the number of heads. Vileplume is now Confused (after doing damage).",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces. Raflésia est maintenant Confus (après résolution des dégâts)."
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -57,10 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Plus ses pétales sont grands, plus ils contiennent de pollen toxique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Wigglytuff",
|
||||
fr: "Grodoudou"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
40,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Lullaby",
|
||||
fr: "Comptine"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
@ -44,20 +51,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Do the Wave",
|
||||
fr: "Faites la vague"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each of your Benched Pokémon.",
|
||||
fr: "Infligez 10 dégâts plus 10 dégâts supplémentaires pour chacun des Pokémon de votre Banc."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -65,9 +76,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "En cas de danger, il gonfle d'air son corps doux et potelé dans des proportions gigantesques."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Clefable",
|
||||
fr: "Mélodelfe"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
36,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Clefairy",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Metronome",
|
||||
fr: "Métronome"
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of the Defending Pokémon's attacks. Metronome copies that attack except for its Energy costs and anything else required in order to use that attack, such as discarding Energy cards. (No matter what type the Defending Pokémon is, Clefable's type is still Colorless.)",
|
||||
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Métronome copie cette attaque à l'exception de son coût d'Énergie et de toute autre action requise pour utiliser cette attaque, comme par exemple, défausser des cartes Énergie. (Quel que soit le type du Pokémon Défenseur, Mélodelfe demeure de type Incolore.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,19 +50,23 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Minimize",
|
||||
fr: "Lilliput"
|
||||
},
|
||||
effect: {
|
||||
en: "All damage done by attacks to Clefable during your opponent's next turn is reduce by 20 (after applying Weakness and Resistance).",
|
||||
fr: "Tous les dégâts infligés à Mélodelfe par des attaques pendant le prochain tour de votre adversaire sont réduits de 20 (après application de la Faiblesse et de la Résistance)."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -63,9 +74,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une sorte de petite fée très rare. Il se cache en apercevant un être humain."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Electrode",
|
||||
fr: "Électrode"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
101,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Voltorb",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,6 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -44,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Chain Lightning",
|
||||
fr: "Rafale de foudre"
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon isn't Colorless, this attack does 10 damage to each Benched Pokémon of the same type as the Defending Pokémon (including your own).",
|
||||
fr: "Si le Pokémon Défenseur n'est pas de type Incolore, cette attaque inflige 10 dégâts à chacun des Pokémon du même type que le Pokémon Défenseur qui sont sur un Banc (y compris le vôtre)."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -59,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il emmagasine des quantités énormes de courant électrique sous pression pouvant exploser."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Flareon",
|
||||
fr: "Pyroli"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
136,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -47,14 +54,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-flammes"
|
||||
},
|
||||
effect: {
|
||||
en: "Discard 1 Energy card attached to Flareon in order to use this attack.",
|
||||
fr: "Défaussez 1 carte Énergie attachée à Pyroli pour pouvoir utiliser cette attaque."
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -62,10 +72,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il peut accumuler suffisamment de chaleur pour atteindre des températures de 1600 degrés."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Electrode",
|
||||
fr: "Électrode"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
101,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Voltorb",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,6 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -44,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Chain Lightning",
|
||||
fr: "Rafale de foudre"
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon isn't Colorless, this attack does 10 damage to each Benched Pokémon of the same type as the Defending Pokémon (including your own).",
|
||||
fr: "Si le Pokémon Défenseur n'est pas de type Incolore, cette attaque inflige 10 dégâts à chacun des Pokémon du même type que le Pokémon Défenseur qui sont sur un Banc (y compris le vôtre)."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -59,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il emmagasine des quantités énormes de courant électrique sous pression pouvant exploser."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Jolteon",
|
||||
fr: "Voltali"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
135,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Pin Missile",
|
||||
fr: "Dard-nuée"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il se charge d'électricité statique pour envoyer des décharges de 10000 volts."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Kangaskhan",
|
||||
fr: "Kangourex"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
115,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Fetch",
|
||||
fr: "Rapporte"
|
||||
},
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte."
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,20 +48,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Comet Punch",
|
||||
fr: "Poing comète"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -64,9 +73,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son enfant ne quitte la poche ventrale protectrice qu'à l'âge de 3 ans."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mr. Mime",
|
||||
fr: "M. Mime"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
122,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mime Jr.",
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Invisible Wall",
|
||||
fr: "Mur invisible"
|
||||
},
|
||||
effect: {
|
||||
en: "Whenever an attack (including your own) does 30 or more damage to Mr. Mime (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.) This power can't be used if Mr. Mime is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Chaque fois qu'une attaque (y compris les vôtres) inflige 30 dégâts ou plus à M. Mime (après application de la Faiblesse et de la Résistance), prévenez ces dégâts. (Tout autre effet ou attaque subsiste.) Ce pouvoir ne peut être utilisé si M. Mime est Endormi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -41,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Meditate",
|
||||
fr: "Yoga"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
|
||||
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Défenseur."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -56,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Dérangez-le pendant qu'il mime et il se battra en distribuant des volées de claques."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidoqueen",
|
||||
fr: "Nidoqueen"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
31,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nidorina",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Boyfriends",
|
||||
fr: "Fiancés"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 20 more damage for each Nidoking you have in play.",
|
||||
fr: "Inflige 20 dégâts plus 20 dégâts supplémentaires pour chaque Nidoking que vous avez en jeu."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -47,12 +54,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Mega Punch",
|
||||
fr: "Ultimapoing"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -60,10 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses écailles très résistantes et son corps massif sont des armes dévastatrices."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pidgeot",
|
||||
fr: "Roucarnage"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
18,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pidgeotto",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,6 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
fr: "Cru-aile"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -44,20 +50,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Hurricane",
|
||||
fr: "Ouragan"
|
||||
},
|
||||
effect: {
|
||||
en: "Unless this attack Knocks Out the Defending Pokémon, return the Defending Pokémon and all cards attached to it to your opponent's hand.",
|
||||
fr: "À moins que cette attaque ne mette le Pokémon Défenseur K.O., renvoyez le Pokémon Défenseur et toutes les cartes qui lui sont attachées dans la main de votre adversaire."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -65,9 +75,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il chasse en surveillant la surface de l'eau et en plongeant pour attraper des proies faciles."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pinsir",
|
||||
fr: "Scarabrute"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
127,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,9 +32,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Irongrip",
|
||||
fr: "Poing de fer"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
@ -45,12 +50,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Guillotine",
|
||||
fr: "Guillotine"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -58,10 +65,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Quand il ne peut écraser sa proie avec sa pince, il la secoue et l'envoie dans les airs."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Scyther",
|
||||
fr: "Insécateur"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
123,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Swords Dance",
|
||||
fr: "Danse-lames"
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, Scyther's Slash attack's base damage is 60 instead of 30.",
|
||||
fr: "Pendant votre prochain tour, l'attaque Tranche d'Insécateur inflige 60 dégâts de base au lieu de 30."
|
||||
},
|
||||
|
||||
},
|
||||
@ -42,18 +47,21 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Rapide et agile comme un ninja, il se déplace si vite qu'il crée l'illusion d'être en groupe."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
fr: "Ronflex"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
143,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Munchlax",
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Thick Skinned",
|
||||
fr: "Dur à cuire"
|
||||
},
|
||||
effect: {
|
||||
en: "Snorlax can't become Asleep, Confused, Paralyzed, or Poisoned. This power can't be used if Snorlax is already Asleep, Confused, or Paralyzed.",
|
||||
fr: "Ronflex ne peut pas devenir Endormi, Confus, Paralysé ou Empoisonné. Ce pouvoir ne peut être utilisé si Ronflex est déjà Endormi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -43,20 +52,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
fr: "Plaquage"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -64,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Très paresseux, il ne fait que manger et dormir. Plus il est gros, plus il devient fainéant."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Vaporeon",
|
||||
fr: "Aquali"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
134,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage plus 10 more damage for each Energy attached to Vaporeon but not used to pay for this attack's Energy cost. Extra Energy after the 2nd doesn't count.",
|
||||
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Aquali en plus du coût en Énergie de cette attaque. Les Énergies supplémentaires après la seconde ne comptent pas."
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit au bord de l'eau. Sa queue lui donne l'apparence d'une sirène."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,56 +4,72 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Venomoth",
|
||||
fr: "Aéromite"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
49,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Venonat",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Shift",
|
||||
fr: "Transmutation"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may change the type of Venomoth to the type of any other Pokémon in play other than Colorless. This power can't be used if Venomoth is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez changer le type d'Aéromite pour le type de n'importe quel Pokémon en jeu autre qu'Incolore. Ce pouvoir ne peut être utilisé si Aéromite est Endormi, Confus, ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Venom Powder",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
|
||||
fr: "Poudre venimeuse"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus et Empoisonné."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les motifs ocres de ses ailes changent en fonction de son type de poison."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Flareon",
|
||||
fr: "Pyroli"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
136,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -47,14 +54,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-flammes"
|
||||
},
|
||||
effect: {
|
||||
en: "Discard 1 Energy card attached to Flareon in order to use this attack.",
|
||||
fr: "Défaussez 1 carte Énergie attachée à Pyroli pour pouvoir utiliser cette attaque."
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -62,10 +72,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il peut accumuler suffisamment de chaleur pour atteindre des températures de 1600 degrés."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Victreebel",
|
||||
fr: "Empiflor"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
71,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Weepinbell",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Lure",
|
||||
fr: "Attraction"
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and switch it with his or her Active Pokémon.",
|
||||
fr: "Si votre adversaire a des Pokémon sur son Banc, choisissez l'un d'eux et échangez-le avec son Pokémon Actif."
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Acid",
|
||||
fr: "Acide"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -58,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit en colonie dans la jungle mais personne n'en est jamais revenu vivant."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Vileplume",
|
||||
fr: "Raflésia"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
45,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gloom",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Heal",
|
||||
fr: "Soins"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, remove 1 damage counter from 1 of your Pokémon. This power can't be used if Vileplume is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, retirez 1 marqueur de dégâts d'un de vos Pokémon. Ce pouvoir ne peut être utilisé si Raflésia est Endormi, Confus, ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -42,14 +51,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Petal Dance",
|
||||
fr: "Danse-fleur"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 40 damage times the number of heads. Vileplume is now Confused (after doing damage).",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces. Raflésia est maintenant Confus (après résolution des dégâts)."
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -57,10 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Plus ses pétales sont grands, plus ils contiennent de pollen toxique."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Wigglytuff",
|
||||
fr: "Grodoudou"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
40,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Lullaby",
|
||||
fr: "Comptine"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
@ -44,20 +51,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Do the Wave",
|
||||
fr: "Faites la vague"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each of your Benched Pokémon.",
|
||||
fr: "Infligez 10 dégâts plus 10 dégâts supplémentaires pour chacun des Pokémon de votre Banc."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -65,9 +76,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "En cas de danger, il gonfle d'air son corps doux et potelé dans des proportions gigantesques."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Butterfree",
|
||||
fr: "Papilusion"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
12,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Metapod",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,9 +36,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Whirlwind",
|
||||
fr: "Cyclone"
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)",
|
||||
fr: "Si votre adversaire a au moins 1 Pokémon sur son Banc, il choisit l'un d'eux et l'échange avec son Pokémon Défenseur. (Infligez les dégâts avant de faire l'échange des Pokémon.)"
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
@ -47,20 +54,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Mega Drain",
|
||||
fr: "Mega-sangsue"
|
||||
},
|
||||
effect: {
|
||||
en: "Remove a number of damage counters from Butterfree equal to half the damage done to the Defending Pokémon (after applying Weakness and Resistance) (rounded up to the nearest 10).",
|
||||
fr: "Retirez de Papilusion un nombre de marqueurs de dégâts égal à la moitié des dégâts infligés au Pokémon Défenseur (après application de la Faiblesse et de la Résistance) (arrondir à la dizaine la plus proche). Si Papilusion a moins de marqueurs de 10 dégâts, retirez-les tous."
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -68,9 +79,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "En combat, il bat des ailes très rapidement pour projeter des poudres toxiques sur ses ennemis."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dodrio",
|
||||
fr: "Dodrio"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
85,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Doduo",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Retreat Aid",
|
||||
fr: "Soutien de retraite"
|
||||
},
|
||||
effect: {
|
||||
en: "As long as Dodrio is Benched, pay 1 Colorless less to retreat your Active Pokémon.",
|
||||
fr: "Tant que Dodrio est sur le Banc, payez en moins pour faire battre en retraite votre Pokémon Actif."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -42,20 +51,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Rage",
|
||||
fr: "Frénésie"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each damage counter on Dodrio.",
|
||||
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur Dodrio."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -63,9 +76,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il élabore des plans complexes avec ses trois cerveaux. Une de ses têtes reste toujours éveillée."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Exeggutor",
|
||||
fr: "Noadkoko"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
103,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Teleport",
|
||||
fr: "Téléport"
|
||||
},
|
||||
effect: {
|
||||
en: "Switch Exeggutor with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez Noadkoko avec 1 des Pokémon de votre Banc."
|
||||
},
|
||||
|
||||
},
|
||||
@ -42,14 +49,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Big Eggsplosion",
|
||||
fr: "Grosse éclate"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a number of coins equal to the number of Energy attached to Exeggutor. This attack does 20 damage times the number of heads.",
|
||||
fr: "Lancez un nombre de pièces égal au nombre d'Énergies attachées à Noadkoko. Cette attaque inflige 20 dégâts multipliés par le nombre de faces."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -57,10 +67,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "On raconte que si une de ses têtes se détache, elle se transforme en un Nœunœuf."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Fearow",
|
||||
fr: "Rapasdepic"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
22,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Spearow",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -32,9 +37,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Agility",
|
||||
fr: "Hâte"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Fearow.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, prévenez tous les effets d'attaques, y compris les dégâts, infligés à Rapasdepic."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
@ -48,18 +55,21 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Drill Peck",
|
||||
fr: "Bec vrille"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -67,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses ailes géantes lui permettent de planer si longtemps qu'il ne se pose que très rarement."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Gloom",
|
||||
fr: "Ortide"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
44,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Oddish",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,11 +35,12 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Poisonpowder",
|
||||
fr: "Poudre toxik"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Poisoned.",
|
||||
},
|
||||
damage: 10,
|
||||
fr: "Le Pokémon Défenseur est maintenant Empoisonné."
|
||||
}
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Foul Odor",
|
||||
fr: "Odeur fétide"
|
||||
},
|
||||
effect: {
|
||||
en: "Both the Defending Pokémon and Gloom are now Confused (after doing damage).",
|
||||
fr: "Le Pokémon Défenseur et Ortide sont maintenant tous deux Confus (après le calcul des dégâts)."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -59,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Le liquide qui s'écoule de sa bouche est comestible. Il sert à appâter sa proie."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Lickitung",
|
||||
fr: "Excelangue"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
108,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Tongue Wrap",
|
||||
fr: "Léchouille"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
@ -42,19 +47,23 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Supersonic",
|
||||
fr: "Ultrason"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -62,9 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il peut projeter sa langue comme un caméléon. Tout contact avec elle provoque une irritation."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Marowak",
|
||||
fr: "Ossatueur"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
105,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Cubone",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Bonemerang",
|
||||
fr: "Osmerang"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces."
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,19 +53,23 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Call for Friend",
|
||||
fr: "À la rescousse !"
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Fighting Basic Pokémon card and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
|
||||
fr: "Cherchez dans votre deck une carte Pokémon de base et placez-la sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)"
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -66,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "L'os qu'il tient dans sa main est une arme. Il peut le lancer avec adresse pour assommer sa proie."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Jolteon",
|
||||
fr: "Voltali"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
135,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Pin Missile",
|
||||
fr: "Dard-nuée"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il se charge d'électricité statique pour envoyer des décharges de 10000 volts."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidorina",
|
||||
fr: "Nidorina"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
30,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nidoran♀",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,9 +35,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Supersonic",
|
||||
fr: "Ultrason"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus."
|
||||
},
|
||||
|
||||
},
|
||||
@ -44,14 +51,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Double Kick",
|
||||
fr: "Double pied"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces."
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -59,10 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "La corne de la femelle grandit lentement. Elle préfère attaquer avec ses griffes et sa gueule."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Parasect",
|
||||
fr: "Parasect"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
47,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Paras",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,9 +36,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Spore",
|
||||
fr: "Spore"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
@ -45,12 +52,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -58,10 +67,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une symbiose entre un parasite et un insecte. Le champignon a pris le contrôle sur son hôte."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Persian",
|
||||
fr: "Persian"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
53,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Meowth",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,6 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -44,20 +50,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Pounce",
|
||||
fr: "Bond"
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon attacks Persian during your opponent's next turn, any damage done by the attack is reduce by 10 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)",
|
||||
fr: "Si le Pokémon Défenseur attaque Persian pendant le prochain tour de votre adversaire, les dégâts infligés par cette attaque sont réduits de 10 (après application de la Faiblesse et de la Résistance). (Si l'un des deux Pokémon bat en retraite, cet effet prend fin.)"
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -65,9 +75,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Très apprécié pour sa fourrure, il est difficile à apprivoiser en raison de son caractère rétif."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Primeape",
|
||||
fr: "Colossinge"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
57,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mankey",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-griffe"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Tantrum",
|
||||
fr: "Mauvaise humeur"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, Primeape is now Confused (after doing damage).",
|
||||
fr: "Lancez une pièce. Si c'est pile, Colossinge est maintenant Confus (après le calcul des dégâts)."
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Agressif et teigneux, il poursuit son gibier jusqu'à épuisement complet."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rapidash",
|
||||
fr: "Galopa"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
78,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ponyta",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Stomp",
|
||||
fr: "Écrasement"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage; if tails, this attack does 20 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires ; si c'est pile, cette attaque inflige 20 dégâts."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Agility",
|
||||
fr: "Hâte"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Rapidash.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, prévenez tous les effets d'attaques, y compris les dégâts, infligés à Galopa."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Doté d'un esprit de compétition, il poursuit toute créature rapide pour faire la course."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rhydon",
|
||||
fr: "Rhinoféros"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
112,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rhyhorn",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -32,6 +37,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
fr: "Koud'korne"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
@ -46,20 +52,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Défonce"
|
||||
},
|
||||
effect: {
|
||||
en: "Rhydon does 20 damage to itself. If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon. Switch the Pokémon even if Rhydon is knocked out.)",
|
||||
fr: "Rhinoféros s'inflige 20 dégâts. Si votre adversaire a au moins 1 Pokémon sur son Banc, il choisit l'un d'eux et l'échange avec son Pokémon Défenseur. (Infligez les dégâts avant de faire l'échange des Pokémon. Échangez les Pokémon même si Rhinoféros est K.O.)"
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -67,9 +77,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son épiderme très épais lui permet de survivre dans un environnement de plus de 3600 degrés."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Seaking",
|
||||
fr: "Poissoroy"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
119,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Goldeen",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,6 +35,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
fr: "Koud'korne"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
@ -42,12 +48,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Waterfall",
|
||||
fr: "Cascade"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -55,10 +63,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Pendant la saison des amours, on peut le voir nager dans les rivières et les lacs."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Tauros",
|
||||
fr: "Tauros"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
128,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,11 +32,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Stomp",
|
||||
fr: "Écrasement"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage; if tails, this attack does 20 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires ; si c'est pile, cette attaque inflige 20 dégâts."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,20 +49,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Rampage",
|
||||
fr: "Saccage"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 10 more damage for each damage counter on Tauros. Flip a coin. If tails, Tauros is now Confused (after doing damage).",
|
||||
fr: "Cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts sur Tauros. Lancez une pièce. Si c'est pile, Tauros est maintenant Confus (après le calcul des dégâts)."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -65,9 +74,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Une fois sa cible en vue, il la charge furieusement en fouettant l'air de sa queue."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,37 +4,47 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Weepinbell",
|
||||
fr: "Boustiflor"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
70,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bellsprout",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poisonpowder",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
|
||||
fr: "Poudre toxik"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
@ -43,12 +53,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
fr: "Tranch'herbe"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -56,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il crache de la poudre toxik pour immobiliser sa proie et il l'achève avec de l'acide."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bellsprout",
|
||||
fr: "Chétiflor"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
69,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,6 +31,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Vine Whip",
|
||||
fr: "Fouet liane"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
@ -39,13 +43,16 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
fr: "Appel à la famille"
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Basic Pokémon named Bellsprout and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
|
||||
fr: "Cherchez dans votre deck un Pokémon de base appelé Chétiflor et placez-le sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)"
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -53,10 +60,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon carnivore qui se nourrit de petits insectes. Ses racines servent d'attaches."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Kangaskhan",
|
||||
fr: "Kangourex"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
115,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Fetch",
|
||||
fr: "Rapporte"
|
||||
},
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte."
|
||||
},
|
||||
|
||||
},
|
||||
@ -43,20 +48,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Comet Punch",
|
||||
fr: "Poing comète"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -64,9 +73,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Son enfant ne quitte la poche ventrale protectrice qu'à l'âge de 3 ans."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Cubone",
|
||||
fr: "Osselait"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
104,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Snivel",
|
||||
fr: "Pleurnicherie"
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon attacks Cubone during your opponent's next turn, any damage done by the attack is reduced by 20 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)",
|
||||
fr: "Si le Pokémon Défenseur attaque Osselait pendant le prochain tour de votre adversaire, les dégâts infligés par l'attaque sont réduits de 20 (après application de la Faiblesse et de la Résistance). (Si l'un des Pokémon bat en retraite, cet effet prend fin.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -41,20 +46,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Rage",
|
||||
fr: "Frénésie"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each damage counter on Cubone.",
|
||||
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur Osselait."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -62,9 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il ne retire jamais son casque en os. Personne n'a jamais vu le visage de ce Pokémon."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Eevee",
|
||||
fr: "Évoli"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
133,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Tail Wag",
|
||||
fr: "Mouvemend'keu"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't attack Eevee during your opponent's next turn. (Benching either Pokémon ends this effect.)",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer Évoli pendant le prochain tour de votre adversaire. (Si l'un des deux Pokémon bat en retraite, cet effet prend fin.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -41,20 +46,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -62,9 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il est capable de copier le code génétique d'un ennemi pour se transformer en son double."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Exeggcute",
|
||||
fr: "Nœufnœuf"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
102,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Hypnosis",
|
||||
fr: "Hypnose"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
@ -41,14 +46,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Leech Seed",
|
||||
fr: "Vampigraine"
|
||||
},
|
||||
effect: {
|
||||
en: "Unless all damage from this attack is prevented, you may remove 1 damage counter from Exeggcute.",
|
||||
fr: "À moins que tous les dégâts infligés par cette attaque ne soient prévenus, vous pouvez retirer 1 marqueur de dégâts de Nœufnœuf."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -56,10 +64,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Souvent pris pour des œufs, ils attaquent en groupe comme un essaim."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Goldeen",
|
||||
fr: "Poissirène"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
118,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,12 +31,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
fr: "Koud'korne"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -41,10 +46,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Sa queue ondule gracieusement comme un voile. On l'appelle: \"Reine des Océans\"."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Jigglypuff",
|
||||
fr: "Rondoudou"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
39,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Lullaby",
|
||||
fr: "Comptine"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
@ -41,18 +46,21 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Pound",
|
||||
fr: "Écras'face"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -60,9 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Quand ses yeux s'illuminent, il chante une mystérieuse berceuse."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,16 +4,20 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mankey",
|
||||
fr: "Férosinge"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
56,
|
||||
],
|
||||
|
||||
hp: 30,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
@ -22,15 +26,18 @@ const card: Card = {
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Peek",
|
||||
fr: "Coup d'œil"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may look at one of the following: the top card of either player's deck, a random card from your opponent's hand, or one of either player's Prizes. This power can't be used if Mankey is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez regarder au choix: la carte du dessus du deck d'un des joueurs, une carte au hasard de la main de votre adversaire, ou une des Récompenses d'un des joueurs. Ce pouvoir ne peut être utilisé si Férosinge est Endormi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -38,12 +45,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -51,10 +60,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il se met en colère très vite. Calme ou furieux, son humeur change d'une seconde à l'autre."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Meowth",
|
||||
fr: "Miaouss"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
52,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,20 +32,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Pay Day",
|
||||
fr: "Jackpot"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, draw a card.",
|
||||
fr: "Lancez une pièce. Si c'est face, piochez une carte."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -50,9 +57,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il adore les pièces de monnaie. Il hante les rues à la recherche de pièces oubliées par les passants."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidoran♀",
|
||||
fr: "Nidoran ♀"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
29,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,11 +31,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-griffe"
|
||||
},
|
||||
effect: {
|
||||
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×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -42,13 +47,16 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
fr: "Appel à la famille"
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Basic Pokémon named Nidoran M or Nidoran F and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
|
||||
fr: "Cherchez dans votre deck un Pokémon de base appelé Nidoran ♀ or Nidoran ♂ et placez-le sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)"
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -56,10 +64,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ce Pokémon est hérissé de dards empoisonnés. Les femelles ont des dards plus petits."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Oddish",
|
||||
fr: "Mystherbe"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
43,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Stun Spore",
|
||||
fr: "Para-spore"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
@ -42,13 +47,16 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Sprout",
|
||||
fr: "Repousse"
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Basic Pokémon named Oddish and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
|
||||
fr: "Cherchez dans votre deck un Pokémon de base appelé Mystherbe et placez-le sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)"
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -56,10 +64,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Pendant la journée il se cache sous terre. Il s'aventure la nuit pour planter des graines."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Paras",
|
||||
fr: "Paras"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
46,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,6 +32,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -41,13 +45,16 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Spore",
|
||||
fr: "Spore"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -55,10 +62,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Les champignons sur son dos se nourrissent des nutriments de leur hôte insectoïde."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mr. Mime",
|
||||
fr: "M. Mime"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
122,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mime Jr.",
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Invisible Wall",
|
||||
fr: "Mur invisible"
|
||||
},
|
||||
effect: {
|
||||
en: "Whenever an attack (including your own) does 30 or more damage to Mr. Mime (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.) This power can't be used if Mr. Mime is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Chaque fois qu'une attaque (y compris les vôtres) inflige 30 dégâts ou plus à M. Mime (après application de la Faiblesse et de la Résistance), prévenez ces dégâts. (Tout autre effet ou attaque subsiste.) Ce pouvoir ne peut être utilisé si M. Mime est Endormi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -41,14 +50,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Meditate",
|
||||
fr: "Yoga"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
|
||||
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Défenseur."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -56,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Dérangez-le pendant qu'il mime et il se battra en distribuant des volées de claques."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pichu",
|
||||
},
|
||||
stage: "Basic",
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,14 +36,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Spark",
|
||||
fr: "Étincelle"
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Si votre adversaire a au moins 1 Pokémon sur son Banc, choisissez l'un d'eux ; cette attaque lui inflige 10 dégâts. (Ne pas appliquer la Faiblesse et la Résistance au Pokémon du Banc.)"
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -46,10 +54,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Quand plusieurs de ces Pokémon se réunissent, ils provoquent de gigantesques orages."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rhyhorn",
|
||||
fr: "Rhinocorne"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
111,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Leer",
|
||||
fr: "Groz'yeux"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't attack Rhyhorn during your opponent's next turn. (Benching either Pokémon ends this effect.)",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer Rhinocorne pendant le prochain tour de votre adversaire. (Si l'un des deux Pokémon bat en retraite, cet effet prend fin.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -42,18 +47,21 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
fr: "Koud'korne"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -61,9 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Avec une ossature 1000 fois plus résistante que celle de l'homme, ses charges sont dévastatrices."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Spearow",
|
||||
fr: "Piafabec"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
21,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,6 +31,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Peck",
|
||||
fr: "Picpic"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
@ -41,19 +45,23 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Mirror Move",
|
||||
fr: "Mimique"
|
||||
},
|
||||
effect: {
|
||||
en: "If Spearow was attacked last turn, do the final result of that attack on Spearow to the Defending Pokémon.",
|
||||
fr: "Si Piafabec a été attaqué durant le tour précédent, infligez le résultat final de cette attaque sur Piafabec au Pokémon Défenseur."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il chasse les insectes dans les hautes herbes. Ses petites ailes lui permettent de voler très vite."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Venonat",
|
||||
fr: "Mimitoss"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
48,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -28,9 +31,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Stun Spore",
|
||||
fr: "Para-spore"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
@ -42,14 +47,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Leech Life",
|
||||
fr: "Vampirisme"
|
||||
},
|
||||
effect: {
|
||||
en: "Remove a number of damage counters from Venonat equal to the damage done to the Defending Pokémon (after applying Weakness and Resistance).",
|
||||
fr: "Retirez de Mimitoss un nombre de marqueurs de dégâts égal aux dégâts infligés au Pokémon Défenseur (après application de la Faiblesse et de la Résistance). Si Mimitoss a moins de marqueurs de 10 dégâts, retirez-les tous."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -57,10 +65,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il vit à l'ombre des grands arbres où il mange des insectes. Il est attiré par la lumière."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,26 +4,17 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Poké Ball",
|
||||
fr: "Poké Balle"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Common",
|
||||
category: "Trainer",
|
||||
|
||||
set: Set,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, vous pouvez chercher n'importe quelle carte Pokémon de base ou Évolution dans votre deck. Montrez cette carte à votre adversaire, puis placez-la dans votre main. Mélangez ensuite votre deck."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidoqueen",
|
||||
fr: "Nidoqueen"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
31,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nidorina",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Boyfriends",
|
||||
fr: "Fiancés"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 20 more damage for each Nidoking you have in play.",
|
||||
fr: "Inflige 20 dégâts plus 20 dégâts supplémentaires pour chaque Nidoking que vous avez en jeu."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -47,12 +54,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Mega Punch",
|
||||
fr: "Ultimapoing"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -60,10 +69,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses écailles très résistantes et son corps massif sont des armes dévastatrices."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pidgeot",
|
||||
fr: "Roucarnage"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
18,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pidgeotto",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,6 +36,7 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
fr: "Cru-aile"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -44,20 +50,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Hurricane",
|
||||
fr: "Ouragan"
|
||||
},
|
||||
effect: {
|
||||
en: "Unless this attack Knocks Out the Defending Pokémon, return the Defending Pokémon and all cards attached to it to your opponent's hand.",
|
||||
fr: "À moins que cette attaque ne mette le Pokémon Défenseur K.O., renvoyez le Pokémon Défenseur et toutes les cartes qui lui sont attachées dans la main de votre adversaire."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -65,9 +75,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il chasse en surveillant la surface de l'eau et en plongeant pour attraper des proies faciles."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -4,23 +4,26 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pinsir",
|
||||
fr: "Scarabrute"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
127,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,9 +32,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Irongrip",
|
||||
fr: "Poigne de fer"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
@ -45,12 +50,14 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Guillotine",
|
||||
fr: "Guillotine"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
@ -58,10 +65,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Quand il ne peut écraser sa proie avec sa pince, il la secoue et l'envoie dans les airs."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user