mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
53
data-asia/SV/SV4a/311.ts
Normal file
53
data-asia/SV/SV4a/311.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "キャモメ",
|
||||
'zh-tw': "長翅鷗",
|
||||
id: "Wingull"
|
||||
},
|
||||
|
||||
illustrator: "kurumitsu",
|
||||
category: "Pokemon",
|
||||
dexId: [278],
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "上昇 気流に 乗って グライダーのように 大空を 舞い くちばしに 挟んだ エサを運ぶ。",
|
||||
'zh-tw': "會乘著上升氣流,如同滑翔機般地飛在空中 輸送鳥嘴銜著的食物。",
|
||||
id: "Wingull menggunakan aliran angin untuk terbang ke langit layaknya pesawat luncur. Pokémon ini menjepit dan membawa makanannya dengan paruhnya."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "かぜおこし",
|
||||
'zh-tw': "起風",
|
||||
id: "Hembusan Angin"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user