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

103
cards/ex/ex8/48.ts Normal file
View File

@ -0,0 +1,103 @@
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: "ex8-48",
localId: 48,
// Card informations
name: {
en: "Starmie",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 121,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex8/48/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex8/48/high.png",
},
},
evolveFrom: {
en: "Staryu",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
abilities: [{
id: 24,
type: AbilityType.POKEBODY,
name: {
en: "Core Guard",
},
text: {
en: "As long as Starmie has any Psychic Energy attached to it, damage done to Starmie by attacks is reduced by 10 (after applying Weakness and Resistance).",
}
}],
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Energy Flip",
},
text: {
en: "Choose 1 of your opponent's Benched Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) You may move an Energy attached to that Pokémon to another of your opponent's Pokémon.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Psychic Boom",
},
text: {
en: "Does 10 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Deoxys",
code: "ex8"
}
}
export default card