1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,76 @@
import { Card } from '../../../interfaces'
import Set from '../Phantom Forces'
const card: Card = {
name: {
en: "Swalot",
fr: "Avaltout",
},
illustrator: "Tomokazu Komiya",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
317,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Gulpin",
fr: "Gloupti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Poison Gas",
fr: "Gaz Toxik",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Swallow Up",
fr: "Engloutissement",
},
effect: {
en: "If, before doing damage, your opponent's Active Pokémon has fewer remaining HP than this Pokémon, this attack does 50 more damage.",
fr: "Si, avant d'infliger des dégâts, il reste moins de PV au Pokémon Actif de votre adversaire qu'à ce Pokémon, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card