1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

78 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Kingler",
fr: "Krabboss",
de: "Kingler"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
99,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Krabby",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Salt Water",
fr: "Eau salée",
de: "Salt Water"
},
effect: {
en: "Search your deck for up to 2 Water Energy cards and attach them to Kingler. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie et attachez-les à Krabboss. Ensuite, mélangez votre deck.",
de: "Search your deck for up to 2 Energy cards and attach them to Kingler. Shuffle your deck afterward."
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Hyper Pump",
fr: "Hyper pompe",
de: "Hyper Pump"
},
effect: {
en: "Does 30 damage plus 20 more damage for each basic Energy attached to Kingler but not used to pay for this attack's Energy cost. You can't add more than 40 damage in this way.",
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque Énergie de base attachée à Krabboss qui n'a pas été utilisée pour payer le Coût en Énergie de cette attaque. Vous ne pouvez pas ajouter plus de 40 dégâts de cette façon.",
de: "Does 30 damage plus 20 more damage for each basic Energy attached to Kingler but not used to pay for this attack's Energy cost. You can't add more than 40 damage in this way."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card