Skip to content

Class: Creature

A card that represents a creature that can be cast and put onto the battlefield.

URI: mtgo:Creature

 classDiagram
    class Creature
      AnyCreature <|-- Creature
      Card <|-- Creature

      Creature : ability
      Creature : artist
      Creature : back_face
      Creature : card_set
      Creature : card_subtype
      Creature : card_supertype
      Creature : card_type
      Creature : color
      Creature : converted_mana_cost
      Creature : description
      Creature : flavor_text
      Creature : front_face
      Creature : id
      Creature : mana_cost
      Creature : name
      Creature : oracle_text
      Creature : power
      Creature : rarity
      Creature : toughness
      Creature : type_line
      Creature : variable_power
      Creature : variable_toughness

Inheritance

Slots

Name Cardinality and Range Description Inheritance
power 1..1
xsd:integer
The amount of damage dealt in combat AnyCreature
toughness 1..1
xsd:integer
The amount of damage needed to destroy a creature AnyCreature
variable_power 0..1
xsd:boolean
Whether a creature's power is variable AnyCreature
variable_toughness 0..1
xsd:boolean
Whether a creature's toughness is variable AnyCreature
mana_cost 0..*
ManaCost
A mana cost for a card or ability Card
converted_mana_cost 0..1
xsd:integer
The total mana cost for a card or ability, summed across all colors Card
color 1..*
Color
The color of a card Card
card_set 0..1
xsd:string
A pool of cards released together and designed for the same play environment Card
ability 0..*
Ability
An ability associated with a card Card
artist 0..1
xsd:string
The artist who drew a card's illustration Card
flavor_text 0..1
xsd:string
The lore text at the bottom of a card Card
front_face 0..1
Card
Front face corresponding to this card (back) face Card
back_face 0..1
xsd:string
Back face corresponding to this card (front) face Card
type_line 1..1
xsd:string
The text line below a card's illustration containing the card's type, subtype... Card
card_type 1..*
xsd:string
The text line below a card's illustration containing the card's type, subtype... Card
card_subtype 0..*
xsd:string
The subtype(s) of a card, such as Equipment, Cat or Warrior Card
card_supertype 0..*
xsd:string
The supertype(s) of a card, such as Basic, Legendary or Snow Card
rarity 0..1
Rarity
An ability associated with a card Card
oracle_text 0..1
xsd:string
The official wording for the card effects Card
id 1..1
xsd:anyURI
A unique identifier for a thing NamedThing
name 1..1
xsd:string
A human-readable name for a thing NamedThing
description 0..1
xsd:string
A human-readable description for a thing NamedThing

See Also

Identifier and Mapping Information

Schema Source

  • from schema: https://cmdoret.net/mtg_ontology/

Mappings

Mapping Type Mapped Value
self mtgo:Creature
native mtgo:Creature

LinkML Source

Direct

name: Creature
description: A card that represents a creature that can be cast and put onto the battlefield.
from_schema: https://cmdoret.net/mtg_ontology/
see_also:
- mtg:Creature
rank: 1000
is_a: Card
mixins:
- AnyCreature
class_uri: mtgo:Creature

Induced

name: Creature
description: A card that represents a creature that can be cast and put onto the battlefield.
from_schema: https://cmdoret.net/mtg_ontology/
see_also:
- mtg:Creature
rank: 1000
is_a: Card
mixins:
- AnyCreature
attributes:
  power:
    name: power
    description: The amount of damage dealt in combat. This is the first number in
      the lower right corner of a creature card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:power
    alias: power
    owner: Creature
    domain_of:
    - AnyCreature
    range: integer
    required: true
  toughness:
    name: toughness
    description: The amount of damage needed to destroy a creature. This is the second
      number in the lower right corner of a creature card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:toughness
    alias: toughness
    owner: Creature
    domain_of:
    - AnyCreature
    range: integer
    required: true
  variable_power:
    name: variable_power
    description: Whether a creature's power is variable. Denoted as * on cards.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    is_a: variable
    slot_uri: mtgo:variable_power
    alias: variable_power
    owner: Creature
    domain_of:
    - AnyCreature
    range: boolean
  variable_toughness:
    name: variable_toughness
    description: Whether a creature's toughness is variable. Denoted as * on cards.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    is_a: variable
    slot_uri: mtgo:variable_toughness
    alias: variable_toughness
    owner: Creature
    domain_of:
    - AnyCreature
    range: boolean
  mana_cost:
    name: mana_cost
    description: A mana cost for a card or ability.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:mana_cost
    multivalued: true
    alias: mana_cost
    owner: Creature
    domain_of:
    - Card
    range: ManaCost
  converted_mana_cost:
    name: converted_mana_cost
    description: The total mana cost for a card or ability, summed across all colors.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:converted_mana_cost
    alias: converted_mana_cost
    owner: Creature
    domain_of:
    - Card
    range: integer
  color:
    name: color
    description: The color of a card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:color
    multivalued: true
    alias: color
    owner: Creature
    domain_of:
    - Token
    - Card
    - Mana
    range: Color
    required: true
  card_set:
    name: card_set
    description: A pool of cards released together and designed for the same play
      environment.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:card_set
    alias: card_set
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  ability:
    name: ability
    description: An ability associated with a card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:ability
    multivalued: true
    alias: ability
    owner: Creature
    domain_of:
    - Token
    - Card
    range: Ability
  artist:
    name: artist
    description: The artist who drew a card's illustration.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:artist
    alias: artist
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  flavor_text:
    name: flavor_text
    description: The lore text at the bottom of a card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:flavor_text
    alias: flavor_text
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  front_face:
    name: front_face
    description: Front face corresponding to this card (back) face.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    domain: Card
    slot_uri: mtgo:front_face
    alias: front_face
    owner: Creature
    domain_of:
    - Card
    inverse: back_face
    range: Card
  back_face:
    name: back_face
    description: Back face corresponding to this card (front) face.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    domain: Card
    slot_uri: mtgo:back_face
    alias: back_face
    owner: Creature
    domain_of:
    - Card
    inverse: front_face
    range: string
  type_line:
    name: type_line
    description: The text line below a card's illustration containing the card's type,
      subtype and supertype (if applicable).
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:type_line
    alias: type_line
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
    required: true
  card_type:
    name: card_type
    description: The text line below a card's illustration containing the card's type,
      subtype and supertype (if applicable).
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:card_type
    multivalued: true
    alias: card_type
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
    required: true
  card_subtype:
    name: card_subtype
    description: The subtype(s) of a card, such as Equipment, Cat or Warrior. Appears
      on the right of the type line.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:card_subtype
    multivalued: true
    alias: card_subtype
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  card_supertype:
    name: card_supertype
    description: The supertype(s) of a card, such as Basic, Legendary or Snow. Appears
      on the left of the type line, before the type.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:card_supertype
    multivalued: true
    alias: card_supertype
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  rarity:
    name: rarity
    description: An ability associated with a card.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:rarity
    alias: rarity
    owner: Creature
    domain_of:
    - Card
    range: Rarity
  oracle_text:
    name: oracle_text
    description: The official wording for the card effects.
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: mtgo:oracle_text
    alias: oracle_text
    owner: Creature
    domain_of:
    - Token
    - Card
    range: string
  id:
    name: id
    description: A unique identifier for a thing
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: schema:identifier
    identifier: true
    alias: id
    owner: Creature
    domain_of:
    - NamedThing
    - Thing
    range: uriorcurie
  name:
    name: name
    description: A human-readable name for a thing
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: schema:name
    alias: name
    owner: Creature
    domain_of:
    - NamedThing
    range: string
    required: true
  description:
    name: description
    description: A human-readable description for a thing
    from_schema: https://cmdoret.net/mtg_ontology/
    rank: 1000
    slot_uri: schema:description
    alias: description
    owner: Creature
    domain_of:
    - NamedThing
    range: string
class_uri: mtgo:Creature