mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
53
data/Sword & Shield/SWSH Black Star Promos/SWSH103.ts
Normal file
53
data/Sword & Shield/SWSH Black Star Promos/SWSH103.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SWSH Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blastoise VMAX"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Blastoise V"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Grand Falls"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 3 Water Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck."
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Water", "Water", "Water"]
|
||||
}, {
|
||||
name: {
|
||||
en: "G-Max Bombard"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 30 damage to 2 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)"
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
cost: ["Water", "Water", "Water", "Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user