mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
80
data/Black & White/Emerging Powers/76.ts
Normal file
80
data/Black & White/Emerging Powers/76.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Emerging Powers'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Klinklang",
|
||||
fr: "Cliticlic",
|
||||
},
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
601,
|
||||
],
|
||||
hp: 150,
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Klang",
|
||||
fr: "Clic",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Charge Beam",
|
||||
fr: "Rayon Chargé",
|
||||
},
|
||||
effect: {
|
||||
en: "Attach an Energy card from your discard pile to this Pokémon.",
|
||||
fr: "Attachez une carte Énergie de votre pile de défausse à ce Pokémon.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Zap Cannon",
|
||||
fr: "Élecanon",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this Pokémon can't use Zap Cannon during your next turn.",
|
||||
fr: "Lancez une pièce. Si c'est pile, ce Pokémon ne peut pas utiliser Élecanon pendant votre prochain tour.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user