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

85 lines
1.8 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Stoutland",
fr: "Mastouffe",
es: "Stoutland",
it: "Stoutland",
pt: "Stoutland",
de: "Bissbark"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
508,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Herdier",
fr: "Ponchien",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Sentinel",
fr: "Sentinelle",
es: "Centinela",
it: "Sentinella",
pt: "Sentinela",
de: "Wächter"
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponent cant play any Supporter cards from his or her hand.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, votre adversaire ne peut pas jouer de cartes Supporter de sa main.",
es: "Mientras este Pokémon sea tu Pokémon Activo, tu rival no puede jugar ninguna carta de Partidario de su mano.",
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, il tuo avversario non può giocare le carte Aiuto che ha in mano.",
pt: "Desde que este Pokémon seja seu Pokémon Ativo, seu oponente não poderá jogar cards de Apoiador da mão dele ou dela.",
de: "Solang dieses Pokémon dein Aktives Pokémon ist, kann dein Gegner keine Unterstützerkarten von seiner Hand spielen."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wild Tackle",
fr: "Tacle Brutal",
},
effect: {
en: "Flip a coin. If tails, this Pokémon does 20 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 20 dégâts.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card