mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
82 lines
1.2 KiB
TypeScript
82 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-10",
|
||
localId: 10,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Grookey",
|
||
fr: "Ouistempo",
|
||
},
|
||
|
||
hp: 60,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/10/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/10/low.png",
|
||
}
|
||
},
|
||
|
||
evolveTo: [{
|
||
en: "Thwackey",
|
||
fr: "Badabouin",
|
||
}],
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 4,
|
||
name: "Naoki Saito"
|
||
},
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Fury Swipes",
|
||
fr: "Combo-Griffe",
|
||
},
|
||
text: {
|
||
en: "Flip 3 coins. This attack does 10 damage for each heads.",
|
||
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||
},
|
||
damage: "10×"
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|