1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

66 lines
1.4 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 '../BREAKpoint'
const card: Card = {
name: {
en: "Raticate BREAK",
fr: "Rattatac TURBO",
es: "Raticate TURBO",
it: "Raticate TURBO",
pt: "Raticate TURBO",
de: "Rattikarl-TURBO"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 110,
types: [
"Colorless",
],
evolveFrom: {
en: "Raticate",
fr: "Rattatac",
},
stage: "BREAK",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Super Fang",
fr: "Croc Fatal",
es: "Superdiente",
it: "Superzanna",
pt: "Superpresa",
de: "Superzahn"
},
effect: {
en: "Put damage counters on your opponents Active Pokémon until its remaining HP is 10.",
fr: "Placez des marqueurs de dégâts sur le Pokémon Actif de votre adversaire jusquà ce quil ait 10 PV.",
es: "Pon contadores de daño en el Pokémon Activo de tu rival hasta que le queden 10 PS restantes.",
it: "Metti dei segnalini danno sul Pokémon attivo del tuo avversario finché i suoi PS rimanenti diventano 10.",
pt: "Coloque contadores de danos no Pokémon Ativo do seu oponente até seu PS restante ser 10.",
de: "Lege so lang Schadensmarken auf das Aktive Pokémon deines Gegners, bis es noch 10 KP übrig hat."
},
}
],
retreat: 0
}
export default card