mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-07 18:49:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
64
data/Diamond & Pearl/Diamond & Pearl/65.ts
Normal file
64
data/Diamond & Pearl/Diamond & Pearl/65.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Diamond & Pearl'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Unown A",
|
||||
fr: "Zarbi A",
|
||||
},
|
||||
illustrator: "Nakaoka",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
201,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Analyze",
|
||||
fr: "ANALYSER",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), if Unown A is on your Bench, you may look at the top 2 cards of your deck and put them back on top of your deck in any order.",
|
||||
fr: "Une seule fois lors de votre tour (avant votre attaque), si Zarbi A est sur votre Banc, vous pouvez regarder les 2 cartes du dessus de votre deck et les replacer au dessus de votre deck dans n'importe quel ordre.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
fr: "Puissance cachée",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user