mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
71 lines
1.0 KiB
TypeScript
71 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Bruxish",
|
||
fr: "Denticrisse",
|
||
es: "Bruxish",
|
||
it: "Bruxish",
|
||
pt: "Bruxish",
|
||
de: "Knirfish"
|
||
},
|
||
|
||
illustrator: "Misa Tsutsui",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Water"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Bite",
|
||
fr: "Morsure",
|
||
es: "Mordisco",
|
||
it: "Morso",
|
||
pt: "Mordida",
|
||
de: "Biss"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Surf",
|
||
fr: "Surf",
|
||
es: "Surf",
|
||
it: "Surf",
|
||
pt: "Surfar",
|
||
de: "Surfer"
|
||
},
|
||
|
||
damage: 110,
|
||
cost: ["Water", "Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Its skin is thick enough to fend off Mareanie's spikes. With its robust teeth, Bruxish crunches up the spikes and eats them."
|
||
}
|
||
}
|
||
|
||
export default card
|