1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Great Encounters'
const card: Card = {
name: {
en: "Porygon-Z",
fr: "Porygon-Z",
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
474,
],
hp: 110,
types: [
"Colorless",
],
evolveFrom: {
en: "Porygon2",
fr: "Porygon2",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Conversion",
fr: "Adaptation",
},
effect: {
en: "Once during your turn (before your attack), you may discard a basic Energy card from your hand. Porygon-Z is the same type as that Energy card until the end of your turn. This power can't be used if Porygon-Z is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez défausser une carte Énergie de base de votre main. Porygon-Z est du même type que cette carte Énergie jusqu'à la fin de votre tour. Ce pouvoir ne peut pas être utilisé si Porygon-Z est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tri Attack",
fr: "Triplattaque",
},
effect: {
en: "Flip 3 coins. This attack does 40 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+30"
},
],
retreat: 2,
}
export default card