mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 19:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/Black & White/Dragon Vault/10.ts
Normal file
70
data/Black & White/Dragon Vault/10.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragon Vault'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Latios",
|
||||
fr: "Latios",
|
||||
},
|
||||
illustrator: "Ryo Ueda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
381,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Sky Blade",
|
||||
fr: "Lame Céleste",
|
||||
},
|
||||
effect: {
|
||||
en: "If Latias is on your Bench, this attack does 20 more damage.",
|
||||
fr: "Si Latias est sur votre Banc, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Speed Wing",
|
||||
fr: "Ailes Vives",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Dragon",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user