mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
94 lines
1.2 KiB
TypeScript
94 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Undaunted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Metang",
|
||
fr: "Metang",
|
||
},
|
||
|
||
illustrator: "TOKIYA",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
375,
|
||
],
|
||
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Beldum",
|
||
fr: "Terhal",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hammer In",
|
||
fr: "Enfoncer",
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Double Smash",
|
||
fr: "Double écrasement",
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: "50×",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
description: {
|
||
en: "When two Beldum fuse together, a magnetic nervous system places their brains in union."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|