1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

92 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Wartortle",
fr: "Carabaffe",
es: "Wartortle",
it: "Wartortle",
pt: "Wartortle",
de: "Schillok"
},
illustrator: "Hiroki Asanuma",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
8,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Squirtle",
fr: "Carapuce",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Solid Shell",
fr: "Coquille Dure",
es: "Caparazón Sólido",
it: "Guscio Solido",
pt: "Carapaça Sólida",
de: "Solider Panzer"
},
effect: {
en: "This Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Aqua Slash",
fr: "Aqua Slash",
es: "Cuchillada Acuática",
it: "Idrotaglio",
pt: "Aqua Corte",
de: "Aquaschlag"
},
effect: {
en: "This Pokémon cant attack during your next turn.",
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
es: "Este Pokémon no puede atacar durante tu próximo turno.",
it: "Questo Pokémon non può attaccare durante il tuo prossimo turno.",
pt: "Este Pokémon não poderá atacar durante a sua próxima vez de jogar.",
de: "Dieses Pokémon kann während deines nächsten Zuges nicht angreifen."
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card