mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
61 lines
881 B
TypeScript
61 lines
881 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Emerging Powers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Throh",
|
||
fr: "Judokrak",
|
||
es: "Throh",
|
||
it: "Throh",
|
||
pt: "Throh",
|
||
de: "Jiutesto"
|
||
},
|
||
illustrator: "match",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
538,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Scarf Hold",
|
||
fr: "Kesa-Gatame",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|