1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

88 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Gastrodon East Sea",
fr: "Tritosor Mer Orient Niv. 40",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
423,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Shellos East Sea",
fr: "Sancoki Mer Orient",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sticky Hold",
fr: "Glue",
},
effect: {
en: "If Gastrodon East Sea is switched or retreats to your Bench, move as many Energy cards attached to Gastrodon East Sea as you like to the new Active Pokémon.",
fr: "Si Tritosor Mer Orient est échangé ou bat en retraite, déplacez autant de cartes Énergie qui lui sont attachées que vous le voulez sur le nouveau Pokémon Actif.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Calling Wave",
fr: "Appel de vague",
},
effect: {
en: "Search your deck for up to 2 Gastrodon and put them onto your Bench as Basic Pokémon. Put 2 damage counters on each of them. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusqu'à 2 Tritosor et placez-les sur votre Banc comme Pokémon de base. Placez 2 marqueurs de dégât sur chacun d'eux. Ensuite, mélangez votre deck.",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse vague",
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "+30"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card