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

95
cards/dp/dpp/DP39.ts Normal file
View File

@ -0,0 +1,95 @@
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: "dpp-DP39",
localId: "DP39",
// Card informations
name: {
en: "Shaymin",
},
hp: 110,
type: [
Type.GRASS,
],
dexId: 492,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP39/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 17,
name: "Shizurow"
},
abilities: [{
id: 794,
type: AbilityType.POKEBODY,
name: {
en: "Revenge Seed",
},
text: {
en: "If any of your Grass Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, each of Shaymin's attacks does 60 more damage to the Active Pokémon (before applying Weakness and Resistance).",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Energy Flare",
},
text: {
en: "You may move any number of Energy cards attached to your Pokémon to your other Pokémon in any way you like.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "DP Black Star Promos",
code: "dpp"
}
}
export default card