mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
41
data/Sword & Shield/Battle Styles/14.ts
Normal file
41
data/Sword & Shield/Battle Styles/14.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Fomantis",
|
||||
fr: "Mimantis"
|
||||
},
|
||||
|
||||
illustrator: "Yukiko Baba",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Continuous Slash",
|
||||
fr: "Tranche Sans Fin"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 20 damage for each heads.",
|
||||
fr: "Lancez une pièce jusqu’à obtenir un côté pile. Cette attaque inflige 20 dégâts pour chaque côté face."
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
cost: ["Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user