1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

68 lines
1.0 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 '../Sandstorm'
const card: Card = {
name: {
en: "Shiftry",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
275,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Nuzleaf",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Fan Away",
},
effect: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, return 1 Energy card attached to the Defending Pokémon to your opponent's hand. This power can't be used if Shiftry is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Light Touch Throw",
},
effect: {
en: "Does 80 damage minus 10 damage for each Energy attached to the Defending Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card