1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

44
data-asia/S/SLL/001.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "飛天螳螂",
ja: "ストライク"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "雙臂的大鐮刀鋒利程度堪比神兵利器。動作迅捷靈敏,沒有獵物能逃出其指掌。",
ja: "腕の 大きな 鎌は 切れ味 鋭く 真に 恐ろしき 得物なり。 動き 俊敏にして 獲物 逃がすことなし。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "高速鐮",
ja: "こうそくカマ"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [123]
}
export default card