mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
97 lines
1.2 KiB
TypeScript
97 lines
1.2 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: "swsh1-46",
|
||
localId: 46,
|
||
|
||
dexId: 118,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Goldeen",
|
||
fr: "Poissirène",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/46/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/46/low.png",
|
||
}
|
||
},
|
||
|
||
evolveTo: [{
|
||
en: "Seaking",
|
||
fr: "Poissoroy",
|
||
}],
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 28,
|
||
name: "SATOSHI NAKAI"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Collect",
|
||
fr: "Collecte",
|
||
},
|
||
text: {
|
||
en: "Draw a card.",
|
||
fr: "Piochez une carte.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Waterfall",
|
||
fr: "Cascade",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|