mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 04:41:57 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/SV/SV3s/143.ts
Normal file
51
data-asia/SV/SV3s/143.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Linoone"
|
||||
},
|
||||
|
||||
illustrator: "Nagomi Nijo",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
id: "Linoone menghabisi mangsa dengan kecepatan seketikanya yang luar biasa dan kukunya yang tajam. Tidak ahli dalam berlari di jalan berbelok."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Jet Head"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Menyerang"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user