1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Bruxish",
fr: "Denticrisse",
},
illustrator: "tetsuya koizumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
779,
],
hp: 90,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Mind Bend",
fr: "Contrôleur dEsprit",
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Follow the Wound",
fr: "Bonjour les Dégâts",
},
effect: {
en: "This attack does 60 damage to 1 of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 60 dégâts à lun des Pokémon de Banc de votre adversaire ayant au moins un marqueur de dégâts. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card