1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Files
cards-database/data/Diamond & Pearl/Mysterious Treasures/70.ts
2021-05-26 14:51:02 +02:00

64 lines
859 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Aipom",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
190,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tail Whap",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Throw Off",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Before doing damage, discard all Pokémon Tool cards attached to that Pokémon.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card