1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Sword & Shield/Darkness Ablaze/126.ts
2021-05-26 20:35:35 +02:00

75 lines
1013 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Klang",
fr: "Clic"
},
illustrator: "NC Empire",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Klink",
fr: "Tic"
},
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Call for Backup",
fr: "Renforts"
},
effect: {
en: "Search your deck for a Metal Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck un Pokémon Metal, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck."
},
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante"
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 3,
}
export default card