mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
57 lines
838 B
TypeScript
57 lines
838 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Throh",
|
||
fr: "Judokrak",
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
538,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Reverse Shoulder Throw",
|
||
fr: "Ippon Seoi Nage",
|
||
},
|
||
effect: {
|
||
en: "If your Benched Pokémon have any damage counters on them, this attack does 90 more damage.",
|
||
fr: "Si des marqueurs de dégâts sont placés sur vos Pokémon de Banc, cette attaque inflige 90 dégâts supplémentaires.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|