1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

80 lines
1.2 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Raticate",
fr: "Rattatac",
es: "Raticate",
it: "Raticate",
pt: "Raticate",
de: "Rattikarl"
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 60,
types: [
"Colorless",
],
evolveFrom: {
en: "Rattata",
fr: "Rattata",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gnaw Through",
fr: "Grignotage",
},
effect: {
en: "Discard a Pokémon Tool card attached to the Defending Pokémon.",
fr: "Défaussez une carte Outil Pokémon attachée au Pokémon Défenseur.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Super Fang",
fr: "Croc Fatal",
},
effect: {
en: "Put damage counters on the Defending Pokémon until its remaining HP is 10.",
fr: "Placez des marqueurs de dégâts sur le Pokémon Défenseur jusqu'à ce qu'il ait 10 PV.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 0
}
export default card