1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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,67 @@
import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Slowpoke & Psyduck-GX",
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
54,
],
hp: 250,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Ditch and Splash",
},
effect: {
en: "Discard any number of Supporter cards from your hand. This attack does 40 damage for each card you discarded in this way.",
},
damage: 40,
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Thrilling Times GX",
},
effect: {
en: "Flip a coin. If heads, this attack does 100 more damage. If this Pokémon has at least 6 extra {W} Energy attached to it (in addition to this attack's cost), flip 10 coins instead, and this attack does 100 more damage for each heads. (You can't use more than 1 GX attack in a game.)",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card