1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Throh",
fr: "Judokrak",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
538,
],
hp: 100,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Squeeze",
fr: "Compression",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage and the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 40,
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Superpower",
fr: "Surpuissance",
},
effect: {
en: "You may do 20 more damage. If you do, this Pokémon does 20 damage to itself.",
fr: "Vous pouvez infliger 20 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card