1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

80 lines
958 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Dewpider",
fr: "Araqua",
es: "Dewpider",
it: "Dewpider",
pt: "Dewpider",
de: "Araqua"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
751,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi dOnda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card