mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
49
data/Sword & Shield/Battle Styles/18.ts
Normal file
49
data/Sword & Shield/Battle Styles/18.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Flapple V",
|
||||
fr: "Pomdrapi V"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Grass"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Sour Spit",
|
||||
fr: "Rejet Acide"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon’s attacks cost ColorlessColorless more.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur coûtent ColorlessColorless de plus."
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
fr: "Cru-Ailes"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Grass", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user