mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
49
data-asia/SV/SV1a/082.ts
Normal file
49
data-asia/SV/SV1a/082.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ウェルカモ"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
dexId: [913],
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "ひたすらに 浅瀬を 走り込んで 足腰を 鍛え 仲間同士で 足技の 華麗さを 競いあう。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "みずでっぽう"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "スプラッシュ"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user