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:
55
data/Sword & Shield/Rebel Clash/204.ts
Normal file
55
data/Sword & Shield/Rebel Clash/204.ts
Normal 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 à l’un 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
|
Reference in New Issue
Block a user