mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
66
data/Sun & Moon/Lost Thunder/9.ts
Normal file
66
data/Sun & Moon/Lost Thunder/9.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Lost Thunder'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Spinarak",
|
||||
fr: "Mimigal",
|
||||
},
|
||||
illustrator: "Misa Tsutsui",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
167,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Spider Scram",
|
||||
fr: "Détalage Arachnéen",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Paralyzed and Poisoned. Put this Pokémon and all cards attached to it in the Lost Zone.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné et Paralysé. Placez ce Pokémon et toutes les cartes qui lui sont attachées dans la Zone Perdue.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Sting",
|
||||
fr: "Dard",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user