mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/Black & White/Next Destinies/81.ts
Normal file
73
data/Black & White/Next Destinies/81.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Next Destinies'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Persian",
|
||||
fr: "Persian",
|
||||
},
|
||||
illustrator: "Shigenori Negishi",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
53,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Meowth",
|
||||
fr: "Miaouss",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Nasty Plot",
|
||||
fr: "Machination",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a card and put it into your hand. Shuffle your deck afterward.",
|
||||
fr: "Cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Shadow Claw",
|
||||
fr: "Griffe Ombre",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard a random card from your opponent's hand.",
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez au hasard une carte de la main de votre adversaire.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user