1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

71 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Porygon2",
fr: "Porygon2"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
233,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Porygon",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Backup",
fr: "Sauvegarde"
},
effect: {
en: "Once during your turn (before your attack), if you have 2 or fewer cards in your hand, you may draw cards until you have exactly 3 cards in your hand. This power can't be used if Porygon2 is affected by a Special Condition.",
fr: "Une seule fois pendant chacun de vos tours (avant votre attaque), si vous avez au maximum 2 cartes dans votre main, vous pouvez piocher des cartes de votre deck jusqu'à ce que vous ayez 3 cartes dans votre main. Ce pouvoir ne peut pas être utilisé si Porygon2 est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hypnotic Ray",
fr: "Onde hypnotique"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card