1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Orbeetle",
fr: "Astronelle"
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
evolveFrom: {
en: "Dottler",
fr: "Coléodôme"
},
attacks: [{
name: {
en: "Evomancy",
fr: "Évomancie"
},
effect: {
en: "For each Energy attached to this Pokémon, search your deck for a Stage 2 Pokémon, except Orbeetle, and put it onto your Bench. Then, shuffle your deck.",
fr: "Pour chaque Énergie attachée à ce Pokémon, cherchez dans votre deck un Pokémon de Niveau 2, à lexception dAstronelle, puis placez-le sur votre Banc. Mélangez ensuite votre deck."
},
cost: ["Colorless"]
}, {
name: {
en: "Zen Headbutt",
fr: "PsykoudBoul"
},
damage: 120,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card