1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

62 lines
906 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Flapple",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Applin",
},
abilities: [
{
type: "Ability",
name: {
en: "Apple Drop",
},
effect: {
en: "Once during your turn, you may put 2 damage counters on 1 of your opponents Pokémon. If you placed any damage counters in this way, shuffle this Pokémon and all attached cards into your deck.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Acid Spray",
},
effect: {
en: "Flip a coin. If heads, discard an Energy from your opponents Active Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card