1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Crimson Invasion'
const card: Card = {
name: {
en: "Gastrodon",
fr: "Tritosor",
},
illustrator: "TOKIYA",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
423,
],
hp: 120,
types: [
"Fightning",
],
evolveFrom: {
en: "Shellos",
fr: "Sancoki",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Eerie Fluid",
fr: "Fluide Inquiétant",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Earthquake",
fr: "Séisme",
},
effect: {
en: "This attack does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun de vos Pokémon de Banc. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card