1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-13 05:15:10 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/73.ts
2021-05-26 14:51:02 +02:00

65 lines
842 B
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 '../Sword & Shield'
const card: Card = {
name: {
en: "Yamper",
fr: "Voltoutou",
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Roar",
fr: "Hurlement",
},
effect: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif contre lun de ses Pokémon de Banc.",
},
},
{
cost: [
"Lightning",
],
name: {
en: "Static Shock",
fr: "Choc Statique",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card