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

89 lines
1.8 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 Blast'
const card: Card = {
name: {
en: "Drifblim",
fr: "Grodrive",
es: "Drifblim",
it: "Drifblim",
pt: "Drifblim",
de: "Drifzepeli"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
426,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Drifloon",
fr: "Baudrive",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Drifting Balloon",
fr: "Ballon Flottant",
es: "Globo a la Deriva",
it: "Pallonderiva",
pt: "Balão à Deriva",
de: "Gleitballon"
},
effect: {
en: "This Pokémons attacks cost Colorless less for each of your opponents Team Plasma Pokémon in play.",
fr: "Les attaques de ce Pokémon coûtent Colorless de moins pour chaque Pokémon de la Team Plasma de votre adversaire en jeu.",
es: "Los ataques de este Pokémon cuestan Colorless menos por cada uno de los Pokémon del Equipo Plasma de tu rival en juego.",
it: "Gli attacchi di questo Pokémon costano Colorless in meno per ogni Pokémon del Team Plasma del tuo avversario in gioco.",
pt: "O ataque deste Pokémon custa Colorless a menos para cada Pokémon da Equipe Plasma do oponente em jogo.",
de: "Die Angriffskosten dieses Pokémon verringern sich um Colorless für jedes Team Plasma-Pokémon, das dein Gegner im Spiel hat."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Derail",
fr: "Déraillement",
},
effect: {
en: "Discard a Special Energy attached to the Defending Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Défenseur.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
retreat: 0
}
export default card