1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +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

73 lines
1.1 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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Grimer",
fr: "Tadmorv",
es: "Grimer",
it: "Grimer",
pt: "Grimer",
de: "Sleima"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
88,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Lure Poison",
fr: "Appât Vénéneux",
},
effect: {
en: "Flip a coin. If heads, switch 1 of your opponent's Benched Pokémon with the Defending Pokémon. The new Defending Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, échangez 1 des Pokémon de Banc de votre adversaire avec le Pokémon Défenseur. Le nouveau Pokémon Défenseur est maintenant Empoisonné.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Sludge Toss",
fr: "Giclée Vaseuse",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card