1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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,78 @@
import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Swellow",
fr: "Hélédelle",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
277,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Taillow",
fr: "Nirondelle",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Agility",
fr: "Hâte",
},
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 cest face, évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
},
damage: 20,
},
{
cost: [
"Colorless",
],
name: {
en: "Swallow Dive",
fr: "Plongeon dHirondelle",
},
effect: {
en: "If this Pokémon used Agility during your last turn, this attack does 80 more damage.",
fr: "Si ce Pokémon a utilisé Hâte pendant votre dernier tour, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card