mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
96
cards/ex/ex5/3.ts
Normal file
96
cards/ex/ex5/3.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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: "ex5-3",
|
||||
localId: 3,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Crobat",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 169,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex5/3/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/ex/ex5/3/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Golbat",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 2,
|
||||
name: "Midori Harada"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flutter Trick",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, look at your opponent's hand and choose 1 card. Your opponent discards the card you chose.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Triple Poison",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Poisoned. Put 3 damage counters instead of 1 on the Defending Pokémon between turns.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Hidden Legends",
|
||||
code: "ex5"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user