mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
94 lines
1.3 KiB
TypeScript
94 lines
1.3 KiB
TypeScript
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: "neo3-24",
|
|
localId: 24,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Sneasel",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.DARKNESS,
|
|
],
|
|
|
|
dexId: 215,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo3/24/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo3/24/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 7,
|
|
name: "Sumiyoshi Kizuki"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.DARKNESS
|
|
],
|
|
name: {
|
|
en: "Swipe",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, discard all Trainer cards attached to your opponent's Pokémon.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Quick Attack",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
|
},
|
|
damage: 10
|
|
}],
|
|
|
|
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-30"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Neo Revelation",
|
|
code: "neo3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|