1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Forbidden Light'
const card: Card = {
name: {
en: "Arceus ◇",
fr: "Arceus ",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
493,
],
hp: 160,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "First Law",
fr: "Loi Originelle",
},
effect: {
en: "Prevent all effects of your opponent's attacks, except damage, done to this Pokémon.",
fr: "Évitez tous les effets des attaques de votre adversaire, à lexception des dégâts, infligés à ce Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Trinity Star",
fr: "Règle pour les cartes (Prisme Étoile)",
},
effect: {
en: "You can use this attack only if you have Grass, Water, and Lightning Pokémon on your Bench. Search your deck for up to 3 basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
},
damage: 30,
},
{
cost: [
"Colorless",
],
name: {
fr: "Étoile Triptyque",
},
effect: {
fr: "Vous ne pouvez utiliser cette attaque que si vous avez des Pokémon Grass, Water et Lightning sur votre Banc. Cherchez jusquà 3 cartes Énergie de base dans votre deck et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite votre deck.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card