mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 04:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
69
data/Black & White/Dragons Exalted/110.ts
Normal file
69
data/Black & White/Dragons Exalted/110.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragons Exalted'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bouffalant",
|
||||
fr: "Frison",
|
||||
},
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
626,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Bouffer",
|
||||
fr: "Touffe Protectrice",
|
||||
},
|
||||
effect: {
|
||||
en: "Any damage done to this Pokémon by attacks is reduced by 20 (after applying Weakness and Resistance).",
|
||||
fr: "Tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Gold Breaker",
|
||||
fr: "Goliastruction",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is a Pokémon-EX, this attack does 60 more damage.",
|
||||
fr: "Si le Pokémon Défenseur est un Pokémon-EX, cette attaque inflige 60 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user