1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

77
data/XY/BREAKpoint/37.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Swanna",
fr: "Lakmécygne",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
581,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Ducklett",
fr: "Couaneton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-Aile",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Brave Bird",
fr: "Rapace",
},
effect: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon s'inflige 20 dégâts.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card