1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 22:39:54 +00:00

76 lines
1.4 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Swalot",
fr: "Avaltout",
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
317,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Gulpin",
fr: "Gloupti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Amnesia",
fr: "Amnésie",
},
effect: {
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Swallow Up",
fr: "Engloutir",
},
effect: {
en: "If, before doing damage, your opponent's Active Pokémon has less remaining HP than this Pokémon, this attack does 80 more damage.",
fr: "Si, avant dinfliger des dégâts, il reste moins de PV au Pokémon Actif de votre adversaire quà ce Pokémon, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card