mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Deoxys'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Shiftry",
|
||
fr: "Tengalice",
|
||
de: "Tengulist"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
275,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Nuzleaf",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Fan Action",
|
||
fr: "Coup d'ventilateur",
|
||
de: "Fan Action"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may switch 1 of the Defending Pokémon with 1 of your opponent's Benched Pokémon. Your opponent chooses the Benched Pokémon to switch. This power can't be used if Shiftry is affected by a Special Condition.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez échanger 1 des Pokémon Défenseurs avec 1 des Pokémon de Banc de votre adversaire. Votre adversaire choisit le Pokémon de Banc à échanger. Ce pouvoir ne peut pas être utilisé si Tengalice est affecté par un État Spécial.",
|
||
de: "Once during your turn (before your attack), you may switch 1 of the Defending Pokémon with 1 of your opponent´s Benched Pokémon. Your opponent chooses the Pokémon to switch. This power can´t be used if Shiftry is affected by a Special Condition."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Stadium Power",
|
||
fr: "Stade puissant",
|
||
de: "Stadium Power"
|
||
},
|
||
effect: {
|
||
en: "If there is any Stadium card in play, this attack does 50 damage plus 20 more damage.",
|
||
fr: "Si une carte Stade est en jeu, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
|
||
de: "If there is any Sadium card in play, this attack does 50 damage plus 20 more damage."
|
||
},
|
||
damage: "50+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|