mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
70 lines
1.4 KiB
TypeScript
70 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Undaunted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Combee",
|
||
fr: "Apitrini",
|
||
de: "Wadribie"
|
||
},
|
||
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
415,
|
||
],
|
||
|
||
hp: 30,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Enraged Assault",
|
||
fr: "Assaut furieux",
|
||
de: "Wutansturm"
|
||
},
|
||
effect: {
|
||
en: "If Vespiquen is on your Bench and has any damage counters on it, this attack does 20 damage plus 60 more damage and the Defending Pokémon is now Poisoned.",
|
||
fr: "Si Apireine se trouve sur votre Banc et a des marqueurs de dégât, cette attaque inflige 20 dégâts plus 60 dégâts supplémentaires et le Pokémon Défenseur est maintenant Empoisonné.",
|
||
de: "Wenn sich Honweisel auf deiner Bank befindet und mindestens 1 Schadensmarke auf ihm liegt, fügt dieser Angriff 20 Schadenspunkte plus 60 weitere Schadenspunkte zu und das Verteidigende Pokémon ist jetzt vergiftet."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "At night, Combee sleep in a group of about a thousand, packed closely together in a lump."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|