mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
61
data/Platinum/Arceus/AR2.ts
Normal file
61
data/Platinum/Arceus/AR2.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Arceus'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Arceus",
|
||||
fr: "Arceus",
|
||||
},
|
||||
illustrator: "Shin Nagasawa",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
493,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Leaf Refresh",
|
||||
fr: "Feuille revigorante",
|
||||
},
|
||||
effect: {
|
||||
en: "Remove 3 damage counters from each of your Benched Pokémon.",
|
||||
fr: "Retirez 3 marqueurs de dégât à chacun des Pokémon de votre Banc.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user