mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [842],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Dratatin",
|
||
en: "Appletun",
|
||
es: "Appletun",
|
||
it: "Appletun",
|
||
pt: "Appletun",
|
||
de: "Schlapfel"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Shiny 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 c'est face, échangez l'un 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 opponent's 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",
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "Eating a sweet apple caused its evolution. A nectarous scent wafts from its body, luring in the bug Pokémon it preys on."
|
||
}
|
||
}
|
||
|
||
export default card
|