mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
92 lines
2.1 KiB
TypeScript
92 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Swadloon",
|
||
fr: "Couverdure",
|
||
es: "Swadloon",
|
||
it: "Swadloon",
|
||
pt: "Swadloon",
|
||
de: "Folikon"
|
||
},
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
541,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Sewaddle",
|
||
fr: "Larveyette",
|
||
es: "Sewaddle",
|
||
it: "Sewaddle",
|
||
pt: "Sewaddle",
|
||
de: "Strawickl"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Protect",
|
||
fr: "Abri",
|
||
es: "Protección",
|
||
it: "Protezione",
|
||
pt: "Proteção",
|
||
de: "Schutzschild"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.",
|
||
fr: "Lancez une pièce. Si c'est face, évitez tous les effets d'attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
|
||
es: "Lanza 1 moneda. Si sale cara, evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon durante el próximo turno de tu rival.",
|
||
it: "Lancia una moneta. Se esce testa, previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
|
||
pt: "Jogue uma moeda. Se sair cara, impedirá todos os efeitos dos ataques a este Pokémon, inclusive danos, durante a próxima vez de jogar do seu oponente.",
|
||
de: "Wirf 1 Münze. Verhindere bei \"Kopf\" während des nächsten Zuges deines Gegners alle Effekte von Angriffen, einschließlich Schaden, die diesem Pokémon zugefügt werden."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Corkscrew Punch",
|
||
fr: "Poing Tire-Bouchon",
|
||
es: "Puño Tirabuzón",
|
||
it: "Pugno Rotante",
|
||
pt: "Soco Saca-rolha",
|
||
de: "Korkenzieherhieb"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|