mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
79
data/XY/BREAKthrough/130.ts
Normal file
79
data/XY/BREAKthrough/130.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../BREAKthrough'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Braviary",
|
||||
fr: "Gueriaigle",
|
||||
},
|
||||
illustrator: "match",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
628,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Rufflet",
|
||||
fr: "Furaiglon",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
fr: "Cru-Aile",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Dual Cut",
|
||||
fr: "Coupe Double",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 80 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user