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

Updated informations (#23)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 20:35:35 +02:00
committed by GitHub
parent ef2d099e6e
commit 151c00be78
820 changed files with 9255 additions and 2679 deletions

View File

@ -0,0 +1,55 @@
import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
set: Set,
name: {
en: "Frosmoth",
fr: "Beldeneige"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Water"],
evolveFrom: {
en: "Snom",
fr: "Frissonille"
},
abilities: [{
type: "Ability",
name: {
en: "Ice Dance",
fr: "Danse de Glace"
},
effect: {
en: "As often as you like during your turn, you may attach a Water Energy card from your hand to 1 of your Benched Water Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Water de votre main à lun de vos Pokémon Water de Banc."
}
}],
attacks: [{
name: {
en: "Aurora Beam",
fr: "Onde Boréale"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2
}
export default card