1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

110
cards/sm/sm10/217.ts Normal file
View File

@ -0,0 +1,110 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm10-217",
localId: 217,
// Card informations
name: {
en: "Reshiram & Charizard-GX",
},
hp: 270,
type: [
Type.FIRE,
],
dexId: 6,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/217/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/217/high.png",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Outrage",
},
text: {
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flare Strike",
},
text: {
en: "This Pokémon can't use Flare Strike during your next turn.",
},
damage: 230
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE
],
name: {
en: "Double Blaze-GX",
},
text: {
en: "If this Pokémon has at least 3 extra Fire Energy attached to it (in addition to this attack's cost), this attack does 100 more damage, and this attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
},
damage: 200
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card