mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
77
data/XY/Roaring Skies/7.ts
Normal file
77
data/XY/Roaring Skies/7.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Roaring Skies'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dustox",
|
||||
fr: "Papinox",
|
||||
},
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
269,
|
||||
],
|
||||
hp: 140,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Cascoon",
|
||||
fr: "Blindalys",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Psybeam",
|
||||
fr: "Rafale Psy",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Twilight Poison",
|
||||
fr: "Poison Nocturne",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep and Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi et Empoisonné.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user