1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

69
data/XY/BREAKpoint/15.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Heatmor",
fr: "Aflamanoir",
},
illustrator: "match",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
631,
],
hp: 100,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Reinforced Flame",
fr: "Flamme Renforcée",
},
effect: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 20 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card