1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-30 07:49:18 +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,67 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Qwilfish",
fr: "Qwilfish",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
211,
],
hp: 90,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Poison Point",
fr: "Point Poison",
},
effect: {
en: "If this Pokémon is in the Active Spot and is damaged by an opponents attack (even if it is Knocked Out), the Attacking Pokémon is now Poisoned.",
fr: "Si ce Pokémon est sur le Poste Actif et quil subit les dégâts dune attaque de votre adversaire (même sil est mis K.O.), le Pokémon Attaquant est maintenant Empoisonné.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Venoshock",
fr: "Choc Venin",
},
effect: {
en: "If your opponents Active Pokémon is Poisoned, this attack does 60 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card