mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
64 lines
984 B
TypeScript
64 lines
984 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ruby & Sapphire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Poochyena",
|
||
fr: "Medhyena",
|
||
de: "Fiffyen"
|
||
},
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
261,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
],
|
||
name: {
|
||
en: "Shadow Bind",
|
||
fr: "Étreinte d'ombre",
|
||
de: "Shadow Bind"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.",
|
||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite tant que le prochain tour de votre adversaire n'est pas terminé.",
|
||
de: "The Defending Pokémon can't retreat until the end of your opponent's next turn."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|