1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

82 lines
1.5 KiB
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: "Squirtle",
fr: "Carapuce",
es: "Squirtle",
it: "Squirtle",
pt: "Squirtle",
de: "Schiggy"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
7,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Floating Shell",
fr: "Carapace Flottante",
es: "Caparazón Flotante",
it: "Guscio Galleggiante",
pt: "Carapaça Flutuante",
de: "Gleitpanzer"
},
effect: {
en: "If you have a Stadium card in play, this Pokémon has no Retreat Cost.",
fr: "Si vous avez une carte Stade en jeu, ce Pokémon na pas de Coût de Retraite.",
es: "Si tienes 1 carta de Estadio en juego, este Pokémon no tiene ningún Coste de Retirada.",
it: "Se hai in gioco una carta Stadio, questo Pokémon non ha costo di ritirata.",
pt: "Se você tiver uma carta de Estádio em jogo, este Pokémon não terá custo de Recuo.",
de: "Wenn du eine Stadionkarte im Spiel hast, hat dieses Pokémon keine Rückzugskosten."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Gun",
fr: "Pistolet à O",
es: "Pistola Agua",
it: "Pistolacqua",
pt: "Revólver dÁgua",
de: "Aquaknarre"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card