mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
98
cards/ex/ex10/16.ts
Normal file
98
cards/ex/ex10/16.ts
Normal file
@ -0,0 +1,98 @@
|
||||
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: "ex10-16",
|
||||
localId: 16,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Sunflora",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 192,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex10/16/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex10/16/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sunkern",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 7,
|
||||
name: "Sumiyoshi Kizuki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Dazzle Dance",
|
||||
},
|
||||
text: {
|
||||
en: "Each Defending Pokémon is now Confused.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Green Blast",
|
||||
},
|
||||
text: {
|
||||
en: "Does 20 damage plus 10 more damage for each Grass Energy attached to all of your Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.WATER,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Unseen Forces",
|
||||
code: "ex10"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user