mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/Platinum/Supreme Victors/111.ts
Normal file
73
data/Platinum/Supreme Victors/111.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Supreme Victors'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Magnemite",
|
||||
fr: "Magneti",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
81,
|
||||
],
|
||||
hp: 40,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Speed Ball",
|
||||
fr: "Balle rapide",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user