mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 00:11:58 +00:00
feat: Add missing German sets (#450)
This commit is contained in:
75
data/E-Card/Aquapolis/H03.ts
Normal file
75
data/E-Card/Aquapolis/H03.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Aquapolis'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ariados",
|
||||
fr: "Migalos",
|
||||
de: "Ariados"
|
||||
},
|
||||
illustrator: "Shin-ichi Yoshida",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
168,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Spinarak",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Gluey Slime",
|
||||
fr: "Bave gluante",
|
||||
de: "Gluey Slime"
|
||||
},
|
||||
effect: {
|
||||
en: "As long as Ariados is in play, each player must pay an additional Colorless to retreat his or her Active Pokémon. Gluey Slime can't make a player pay more than an additional Colorless to retreat a Pokémon, even if there is more than 1 Ariados in play.",
|
||||
fr: "Tant que Migalos est en jeu, chaque joueur doit payer un supplémentaire pour faire battre en retraite son Pokémon Actif. Bave gluante ne peut pas obliger un joueur à payer plus qu'un supplémentaire pour faire battre en retraite un Pokémon, même s'il y a plus d'un Migalos en jeu.",
|
||||
de: "As long as Ariados is in play, each player must pay an additional to retreat his or her Active Pokémon. Gluey Slime can´t make a player pay more than an additional to retreat a Pokémon, even if there is more than 1 Ariados in play."
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Spider Force",
|
||||
fr: "Arachno-force",
|
||||
de: "Spider Force"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage. If tails, this attack does 20 damage and the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires. Si c'est pile, cette attaque inflige 20 dégâts et le Pokémon Défenseur est maintenant Paralysé.",
|
||||
de: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage. If tails, this attack does 20 damage and the Defending Pokémon is now Paralyzed."
|
||||
},
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user