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

83 lines
975 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 '../Team Up'
const card: Card = {
name: {
en: "Wartortle",
fr: "Carabaffe",
es: "Wartortle",
it: "Wartortle",
pt: "Wartortle",
de: "Schillok"
},
illustrator: "Misa Tsutsui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
8,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Squirtle",
fr: "Carapuce",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Waterfall",
fr: "Cascade",
es: "Cascada",
it: "Cascata",
pt: "Cachoeira",
de: "Kaskade"
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card