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

99
cards/sm/sm12/28.ts Normal file
View File

@ -0,0 +1,99 @@
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: "sm12-28",
localId: 28,
// Card informations
name: {
en: "Entei",
fr: "Entei",
},
hp: 130,
type: [
Type.FIRE,
],
dexId: 244,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/28/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/28/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/28/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/28/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Rally Back",
fr: "Répercussions",
},
text: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.",
fr: "Si lun de vos Pokémon a été mis K.O. par les dégâts dune attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Fire Mane",
fr: "Crinière de Feu",
},
damage: 100
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card