mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 00:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
55
data/Black & White/Noble Victories/58.ts
Normal file
55
data/Black & White/Noble Victories/58.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Noble Victories'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Litwick",
|
||||
fr: "Funécire",
|
||||
},
|
||||
illustrator: "Naoki Saito",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
607,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Teleportation Burst",
|
||||
fr: "Téléportation Explosive",
|
||||
},
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user