mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
* fix: Add the two first sets Signed-off-by: Avior <github@avior.me> * fix: Add DP, DP Black Star and Mysterious Treasures Signed-off-by: Avior <github@avior.me>
69 lines
1018 B
TypeScript
69 lines
1018 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Kricketot",
|
|
fr: "Crikzik"
|
|
},
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
401,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Call for Family",
|
|
fr: "Appel à la famille"
|
|
},
|
|
effect: {
|
|
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.",
|
|
fr: "Choisissez dans votre deck un Pokémon de base et placez-le sur votre Banc. Ensuite, mélangez votre deck."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
],
|
|
name: {
|
|
en: "Sling",
|
|
fr: "Lance-pierres"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Quand il bascule sa tête d'avant en arrière, ses antennes se heurtent dans un son de xylophone."
|
|
}
|
|
}
|
|
|
|
export default card
|