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:
67
data/Sword & Shield/Sword & Shield/51.ts
Normal file
67
data/Sword & Shield/Sword & Shield/51.ts
Normal 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 opponent’s 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 qu’il subit les dégâts d’une attaque de votre adversaire (même s’il est mis K.O.), le Pokémon Attaquant est maintenant Empoisonné.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Venoshock",
|
||||
fr: "Choc Venin",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent’s 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
|
Reference in New Issue
Block a user