mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
48
data-asia/SV/SV1S/091.ts
Normal file
48
data-asia/SV/SV1S/091.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1S"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ギャラドスex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 300,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Water", "Water"],
|
||||
|
||||
name: {
|
||||
ja: "たきのぼり"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}, {
|
||||
cost: ["Water", "Water", "Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "タイラントテール"
|
||||
},
|
||||
|
||||
damage: "180+",
|
||||
|
||||
effect: {
|
||||
ja: "相手のバトルポケモンにダメカンがのっているなら、180ダメージ追加。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user