1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

72 lines
1.9 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Dratatin",
en: "Appletun",
es: "Appletun",
it: "Appletun",
pt: "Appletun",
de: "Schlapfel"
},
illustrator: "Kouki Saitou",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
fr: "Verpom",
en: "Applin"
},
abilities: [{
type: "Ability",
name: {
fr: "Arôme Délicieux",
en: "Delicious Aroma",
es: "Aroma Delicioso",
it: "Aroma Delizioso",
pt: "Aroma Delicioso",
de: "Köstliches Aroma"
},
effect: {
fr: "Une fois pendant votre tour, vous pouvez lancer une pièce. Si cest face, échangez lun des Pokémon de Banc de base de votre adversaire contre son Pokémon Actif.",
en: "Once during your turn, you may flip a coin. If heads, switch 1 of your opponents Benched Basic Pokémon with their Active Pokémon.",
es: "Una vez durante tu turno, puedes lanzar 1 moneda. Si sale cara, cambia 1 de los Pokémon Básicos en Banca de tu rival por su Pokémon Activo.",
it: "Una sola volta durante il tuo turno, puoi lanciare una moneta. Se esce testa, scambia uno dei Pokémon Base nella panchina del tuo avversario con il suo Pokémon attivo.",
pt: "Uma vez durante o seu turno, você poderá jogar 1 moeda. Se sair cara, troque 1 dos Pokémon Básicos no Banco do seu oponente pelo Pokémon Ativo dele(a).",
de: "Einmal während deines Zuges kannst du 1 Münze werfen. Tausche bei Kopf 1 Basis-Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus."
}
}],
attacks: [{
name: {
fr: "Lance-Soleil",
en: "Solar Beam",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Raio Solar",
de: "Solarstrahl"
},
damage: 70,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card