mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
72
data/XY/XY/92.ts
Normal file
72
data/XY/XY/92.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../XY'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Spritzee",
|
||||
fr: "Fluvetin",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
682,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Fairy",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fairy",
|
||||
],
|
||||
name: {
|
||||
en: "Sweet Scent",
|
||||
fr: "Doux Parfum",
|
||||
},
|
||||
effect: {
|
||||
en: "Heal 20 damage from 1 of your Pokémon.",
|
||||
fr: "Soignez 20 dégâts à l'un de vos Pokémon.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flop",
|
||||
fr: "Flop",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user