mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
85 lines
1.3 KiB
TypeScript
85 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: "swsh1-17",
|
||
localId: 17,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Blipbug",
|
||
fr: "Larvadar",
|
||
},
|
||
|
||
hp: 40,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/17/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/17/low.png",
|
||
}
|
||
},
|
||
|
||
evolveTo: [{
|
||
en: "Dottler",
|
||
fr: "Coléodôme",
|
||
}],
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 16,
|
||
name: "Mina Nakai"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Call for Family",
|
||
fr: "Appel à la Famille",
|
||
},
|
||
text: {
|
||
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|