mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
81 lines
1.4 KiB
TypeScript
81 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Plasma Blast'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Accelgor",
|
||
fr: "Limaspeed",
|
||
es: "Accelgor",
|
||
it: "Accelgor",
|
||
pt: "Accelgor",
|
||
de: "Hydragil"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
617,
|
||
],
|
||
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Shelmet",
|
||
fr: "Escargaume",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Retribution",
|
||
fr: "Rétribution",
|
||
},
|
||
effect: {
|
||
en: "If an Escavalier you had in play was Knocked Out by damage from an opponent's attack during his or her last turn, put all Energy attached to the Defending Pokémon into your opponent's hand.",
|
||
fr: "Si un Lançargot que vous aviez en jeu a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, mettez toutes les Énergies attachées au Pokémon Défenseur dans la main de votre adversaire.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Signal Beam",
|
||
fr: "Rayon signal",
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Confused.",
|
||
fr: "Le Pokémon Défenseur est maintenant Confus.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|