1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

69
data/XY/Evolutions/26.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Slowbro-EX",
fr: "Flagadoss-EX",
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
80,
],
hp: 180,
types: [
"Water",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slack Off",
fr: "Paresse",
},
effect: {
en: "Heal 60 damage from this Pokémon. This Pokémon can't attack during your next turn.",
fr: "Soignez 60 dégâts à ce Pokémon. Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
},
},
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Flash Splash",
fr: "Éclaboussure Éclair",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card