1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

86 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Roaring Skies'
const card: Card = {
name: {
en: "Swellow",
fr: "Hélédelle",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
277,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Taillow",
fr: "Nirondelle",
},
stage: "Stage1",
abilities: [
{
type: "Ancient Trait",
name: {
fr: "Plus Δ",
},
effect: {
fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts d'une attaque de ce Pokémon, récupérez une carte Récompense supplémentaire.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Peck",
fr: "Picpic",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-Aile",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card